Skip to main content

A dependency-aware GraphQL API fuzzing tool

Project description

The only dependency-aware GraphQL API testing tool!

python3.12 Maintainability lint unit_test_status integration_test_status security

GraphQLer is a cutting-edge tool designed to dynamically test GraphQL APIs with a focus on awareness. It offers a range of sophisticated features that streamline the testing process and ensure robust analysis of GraphQL APIs such as being able to automatically read a schema and run tests against an API using the schema. Furthermore, GraphQLer is aware of dependencies between objects queries and mutations which is then used to perform security tests against APIs.

Key features

  • Request generation: Automatically generate valid queries and mutations based on the schema (supports fragments, unions, interfaces, and enums based on the latest GraphQL-spec)
  • Dependency awareness: Run queries and mutations based on their natural dependencies
  • Resource tracking: Keep track of any objects seen in the API for future use and reconnaisance
  • Error correction: Try and fix requests so that the GraphQL API accepts them
  • Statistics collection: Shows your results in a easy-to-read file
  • Ease of use: All you need is the endpoint and the authentication token if needed
  • Customizability: Change the configuration file to suit your needs, proxy requests through Burp or ZAP if you want

Getting started

Quick installation can be done either with pip:

pip install GraphQLer
python -m graphqler --help

or docker:

docker pull omar2535/graphqler:latest
docker run --rm omar2535/graphqler --help

For a more in-depth guide, check out the installation guide.

Usage

 python -m graphqler --help
usage: __main__.py [-h] --url URL --path PATH [--config CONFIG] --mode {compile,fuzz,idor,run,single} [--auth AUTH] [--proxy PROXY] [--node NODE] [--version]

options:
  -h, --help            show this help message and exit
  --url URL             remote host URL
  --path PATH           directory location for files to be saved-to/used-from
  --config CONFIG       configuration file for the program
  --mode {compile,fuzz,idor,run,single}
                        mode to run the program in
  --auth AUTH           authentication token Example: 'Bearer arandompat-abcdefgh'
  --proxy PROXY         proxy to use for requests (ie. http://127.0.0.1:8080)
  --node NODE           node to run (only used in *single* mode)
  --version             display version

Below will be the steps on how you can use this program to test your GraphQL API. The usage is split into 2 phases, compilation and fuzzing.

  • Compilation mode:This mode is responsible for running an introspection query against the given API and generating the dependency graphh
  • Fuzzing mode: This mode is responsible for traversing the dependency graph and sending test requests to the API

A third mode is also included for ease of use, called run mode. this mode compiles both the compilation and fuzzing mode into one single command.

A mode in development right now is known as the IDOR mode, which will look for re-used objects that are accessible using another access token.

Compile mode

python -m graphqler --mode compile --url <URL> --path <SAVE_PATH>

After compiling, you can view the compiled results in the <SAVE_PATH>/compiled. Additionally, a graph will have been generated called dependency_graph.png for inspection. Any UNKNOWNS in the compiled .yaml files can be manually marked; however, if not marked the fuzzer will still run them but just without using a dependency chain.

Fuzz mode

python -m graphqler --mode fuzz --url <URL> --path <SAVE_PATH>

While fuzzing, statistics related to the GraphQL API and any ongoing request counts are logged in the console. Any request return codes are written to <SAVE_PATH>/stats.txt. All logs during fuzzing are kept in <SAVE_PATH>/logs/fuzzer.log. The log file will tell you exactly which requests are sent to which endpoints, and what the response was. This can be used for further result analysis. A copy of the objects bucket can be found in objects_bucket.pkl as well.

IDOR Checking mode

python -m graphqler --mode idor --url <URL> --path <SAVE_PATH>

The insecure direct object reference (IDOR) mode can be run after compile mode and fuzz mode is complete. It requires the objects_bucket.pkl file to already exist as it uses the objects bucket from a previous run to see if information found/created from a previous run is also reference-able in a new run.

Run mode

Runs both the Compile mode and Fuzz mode

python -m graphqler --mode run --url <URL> --path <SAVE_PATH>

Single mode

Runs a single node (make sure it exists in the list of queries or mutations)

python -m graphqler --url <URL> --path <SAVE_PATH> --config <CUSTOM_CONFIG>> --proxy <CUSTOM_PROXY> --mode single --node <NODE_NAME>

Advanced features

There are also varaibles that can be modified with the --config flag as a TOML file (see /examples/config.toml for an example). These correspond to specific features implemented in GraphQLer, and can be tuned to your liking.

Variable Name Variable Description Variable Type Default
MAX_LEVENSHTEIN_THRESHOLD The levenshtein distance between objects and object IDs Integer 20
MAX_OBJECT_CYCLES Max number of times the same object should be materialized in the same query/mutation Integer 3
MAX_OUTUPT_SELECTOR_DEPTH Max depth the query/mutation's output should be expanded (such as the case of infinitely recursive selectors) Integer 3
USE_OBJECTS_BUCKET Whether or not to store object IDs for future use Boolean True
USE_DEPENDENCY_GRAPH Whether or not to use the dependency-aware feature Boolean True
ALLOW_DELETION_OF_OBJECTS Whether or not to allow deletions from the objects bucket Boolean False
MAX_FUZZING_ITERATIONS Maximum number of fuzzing payloads to run on a node Integer 5
MAX_TIME The maximum time to run in seconds Integer 3600
TIME_BETWEEN_REQUESTS Max time to wait between requests in seconds Integer 0.001
DEBUG Debug mode Boolean False
Custom Headers Custom headers to be sent along with each request Object Accept = "application/json"
SKIP_DOS_ATTACKS Whether or not to skip DOS attacks(defaults to true to not DOS the service) Boolean True
SKIP_INJECTION_ATTACKS Whether or not to skip injection attacks Boolean False
SKIP_MISC_ATTACKS Whether or not to skip miscillaneous attacks Boolean False
SKIP_NODES Nodes to skip (query or mutation names) List []

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

graphqler-2.2.3.tar.gz (57.6 kB view details)

Uploaded Source

Built Distribution

graphqler-2.2.3-py3-none-any.whl (86.3 kB view details)

Uploaded Python 3

File details

Details for the file graphqler-2.2.3.tar.gz.

File metadata

  • Download URL: graphqler-2.2.3.tar.gz
  • Upload date:
  • Size: 57.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.3 CPython/3.12.0 Linux/5.15.153.1-microsoft-standard-WSL2

File hashes

Hashes for graphqler-2.2.3.tar.gz
Algorithm Hash digest
SHA256 6b72e698a2673624f092f6a1a946f7365b5d28c0dcdb277939b8afcfd62dc5b9
MD5 c97247c164fa063450dc9b56306c6cea
BLAKE2b-256 d574ab58a8d7b8fc7603d5e9c3bd06fc2fcbfeccdfcf7507a5aec482e43c38cf

See more details on using hashes here.

Provenance

File details

Details for the file graphqler-2.2.3-py3-none-any.whl.

File metadata

  • Download URL: graphqler-2.2.3-py3-none-any.whl
  • Upload date:
  • Size: 86.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.3 CPython/3.12.0 Linux/5.15.153.1-microsoft-standard-WSL2

File hashes

Hashes for graphqler-2.2.3-py3-none-any.whl
Algorithm Hash digest
SHA256 e626eb5cc24a7ff35bae7a5ca7ccd428cf05e447c8061df0e0d0d8277114d8b6
MD5 4c75f361d37ad0d363eee001d1ac8679
BLAKE2b-256 2946b5bc314eadd011cbef7eb3436adef322c61f63cb6bdf7a4c4f94f2119002

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page