Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Advanced API security testing for REST, GraphQL, and gRPC
api: type: rest spec: ./openapi.yaml # or remote spec: https://api.example.com/openapi.json
api: endpoints: - method: GET path: /api/users/{id} params: id: ["1", "2", "999", "admin"] - method: POST path: /api/users body: name: "{{fuzz}}" email: "{{fuzz}}@test.com" role: ["user", "admin"]
api: type: graphql endpoint: https://api.example.com/graphql introspection: true queries: - | query { user(id: "{{fuzz}}") { email role } } mutations: - | mutation { updateUser(id: "{{fuzz}}", role: "admin") { success } } tests: - introspection_enabled - query_depth_limit - batch_query_attack - field_authorization
api: type: grpc endpoint: api.example.com:443 proto_files: - ./protos/service.proto reflection: true
api: response_analysis: sensitive_data: - password - secret - token - ssn - credit_card pii_detection: true verbose_errors: true