بنقرة واحدة
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} }