一键导入
graphql-testing
GraphQL security testing — introspection, injection, auth bypass, DoS
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
GraphQL security testing — introspection, injection, auth bypass, DoS
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Business logic vulnerability detection — workflow bypass, price manipulation, state abuse, and application-specific flaws
Detect PII, credentials, and corporate sensitive data in API responses, source code, files, headers, and database extracts
Detect and exploit SQL injection vulnerabilities in web application parameters
Test for authentication and authorization flaws including credential attacks, session issues, and access control bypasses
Detect and exploit cross-site scripting vulnerabilities in web applications
Discover hidden parameters, test values, and identify input handling anomalies
| name | graphql-testing |
| description | GraphQL security testing — introspection, injection, auth bypass, DoS |
| origin | RedteamOpencode |
/graphql, /gql, /api/graphql)query, mutation, or operationName parametersrun_tool curl / Burp Suite Repeater/graphql, /gql, /api/graphql, /graphql/console/graphiql, /playgroundws://target/graphqlgraphql { __schema { types { name fields { name type { name } } } } } { __schema { queryType { fields { name } } } }{ __schema { mutationType { fields { name } } } }{ __type(name: "User") { fields { name } } }_debug, __internal{ user(id: "other-id") { email orders { total } } }user { role passwordHash }?{ order(id: 1) { user { email } } }{ user(name: "' OR 1=1--") { id } }$variablesgraphql { user { friends { friends { friends { friends { name } } } } } } [{query:...},{query:...},...]graphql { a: user(id:1){name} b: user(id:2){name} ... z: user(id:26){name} }