vapt-graphql

vapt-graphql is a skill for Claude Code, Codex from bhuvangupta/vapt-claude. It costs 0 tokens per session (2,970 once invoked), scanned B, original, MIT.

A security-testing workflow for GraphQL, a system that lets clients request specific data from an API. It discovers GraphQL endpoints, identifies the server software, and analyzes the exposed attack surface.

In plain words
What is it for?
Use it to locate GraphQL endpoints, identify their implementation, and test how they handle security-sensitive query behavior.
Why use it?
It helps find GraphQL-specific security weaknesses that a general API check may miss, such as unsafe introspection, batching, or deeply nested queries.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to locate GraphQL endpoints, identify their implementation, and test how they handle security-sensitive query behavior.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/bhuvangupta/vapt-claude/vapt-graphql
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add bhuvangupta/vapt-claude --skill vapt-graphql
Clone the repo
git clone --depth 1 https://github.com/bhuvangupta/vapt-claude

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for vapt-graphql

README.md
[![agentmods](https://agentmods.dev/badge/skills/bhuvangupta/vapt-claude/vapt-graphql/github.svg)](https://agentmods.dev/skills/bhuvangupta/vapt-claude/vapt-graphql)
Your own site
<a href="https://agentmods.dev/skills/bhuvangupta/vapt-claude/vapt-graphql"><img src="https://agentmods.dev/badge/skills/bhuvangupta/vapt-claude/vapt-graphql/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for vapt-graphql

Your own site · 80×15
<a href="https://agentmods.dev/skills/bhuvangupta/vapt-claude/vapt-graphql"><img src="https://agentmods.dev/badge/skills/bhuvangupta/vapt-claude/vapt-graphql.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,970 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 2 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00000 $0.02970
Opus 5 $0.00000 $0.01485
Sonnet 5 $0.00000 $0.00594
Haiku 4.5 $0.00000 $0.00297

Measured 9d ago against content hash dee76e326fc2, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade B, and why

vapt-graphql scanned grade B with 2 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Cloud metadata endpointmediumServer-side request forgery

One request to 169.254.169.254 can return temporary IAM credentials.

-d '{"query":"mutation { importData(url: \"http://169.254.169.254/latest/meta-data/\") { result } }"}' \

Downgraded: this mod is about security review, or the phrase is quoted, so it is likely naming the pattern rather than instructing it.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

code=$(curl -s -o /dev/null -w "%{http_code}" -X POST \
skills/vapt-graphql/SKILL.md · 363 lines

How it starts

The opening of the file, as written. The whole thing — 363 lines — stays where its author put it; the contents beside it link to each section on GitHub.

GraphQL Security Testing

When Invoked

The user runs /vapt graphql <url> for deep GraphQL-specific security testing.

This is a specialized extension of vapt-api. While vapt-api covers basic GraphQL checks (introspection, depth, batching), this skill provides comprehensive GraphQL attack surface analysis.

Phase 1: GraphQL Discovery & Fingerprinting

1.1 Endpoint Detection

# Common GraphQL endpoint paths
for path in /graphql /graphiql /v1/graphql /v2/graphql /api/graphql /query /gql /graphql/console /altair /playground; do
    code=$(curl -s -o /dev/null -w "%{http_code}" -X POST \
        -H "Content-Type: application/json" \
        -d '{"query":"{__typename}"}' <url>$path)
    [ "$code" != "404" ] && [ "$code" != "405" ] && echo "GraphQL candidate: $path ($code)"
done

1.2 Engine Fingerprinting

Identify the GraphQL server implementation:

# Apollo Server detection
curl -s -X POST -H "Content-Type: application/json" \
    -d '{"query":"{__typename}"}' <url>/graphql | grep -i apollo

# Check for engine-specific headers
curl -sI -X POST -H "Content-Type: application/json" \
    -d '{"query":"{__typename}"}' <url>/graphql

Look for indicators of:

  • Apollo Server (Node.js)
  • graphql-yoga (Node.js)
  • Hasura (auto-generated)
  • AWS AppSync
  • Graphene (Python)
  • graphql-java
  • Strawberry (Python)
  • Hot Chocolate (.NET)

Engine detection informs which vulnerabilities are most likely.

Phase 2: Schema Reconnaissance

2.1 Full Introspection Query

curl -s -X POST -H "Content-Type: application/json" \
    -d '{"query":"{ __schema { queryType { name } mutationType { name } subscriptionType { name } types { name kind description fields(includeDeprecated: true) { name description args { name type { name kind ofType { name kind } } } type { name kind ofType { name kind } } isDeprecated deprecationReason } inputFields { name type { name kind ofType { name kind } } } enumValues { name } possibleTypes { name } } directives { name description locations args { name type { name kind ofType { name kind } } } } } }"}' \
    <url>/graphql

Read the full file on GitHub · 363 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 363 lines · 0 tokens per session scan B dee76e326fc2

Subscribe to this mod's changes

vapt-graphql is a skill published in the GitHub repository bhuvangupta/vapt-claude (1 stars, last pushed 5mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 2,970 tokens. A static security scan graded it B with 2 findings (cloud metadata endpoint, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

verification-loop

This skill should be used when the user asks to "verify code", "run verification", "check quality", "validate changes", or before creating a PR. Provides comprehensive verification including build, type check, lint, tests, security scan, and diff review.

Galaxy-Dawn/claude-scholar · 55 tokens

test-native-extension

Validate a third-party control repo across four automated layers plus one printed manual recipe. Layer 1 asserts native-source structure (Android getName() and iOS +moduleName to manifest nativeModule; @ReactMethod / RCTEXPORTMETHOD to methods; no @ReactModule) plus load/init readiness (ReactPackage public no-arg…

microsoft/power-platform-skills · 211 tokens

test-site

Tests a deployed, activated Power Pages site at runtime using browser-based navigation, page crawling, and API request verification via Playwright. Use when the user wants to test, verify, or smoke-test their deployed site.

microsoft/power-platform-skills · 46 tokens

performing-soap-web-service-security-testing

Perform security testing of SOAP web services by analyzing WSDL definitions and testing for XML injection, XXE, WS-Security bypass, and SOAPAction spoofing.

xalgorix/xalgorix · 41 tokens

race

Race condition / TOCTOU playbook — limit overrun (one-time codes used twice, gift cards spent twice), single-packet attack (last-byte sync) to force parallel processing, and state-confusion races (file upload + read, order before payment). Use when timing-sensitive logic could be abused — one-time codes, coupons/gift…

PentesterFlow/agent · 82 tokens

ln-41-test-strategy-planner

Plans a risk-based test portfolio and prioritized scenarios without editing tests. Not for test execution or implementation.

levnikolaevich/claude-code-skills · 29 tokens