├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── fetch-introspections.sh ├── generate-additional-wordlists.ts ├── generate-readme.ts ├── generate-wordlist.ts ├── types.ts ├── urls-template.json └── wordlists ├── 100k ├── argumentWordlist-100k.txt ├── fieldWordlist-100k.txt ├── mutationFieldWordlist-100k.txt ├── mutationTypeWordlist-100k.txt ├── operationFieldWordlist-100k.txt ├── operationTypeWordlist-100k.txt ├── overallWordlist-100k.txt ├── queryFieldWordlist-100k.txt ├── queryTypeWordlist-100k.txt ├── subscriptionFieldWordlist-100k.txt ├── subscriptionTypeWordlist-100k.txt └── typeWordlist-100k.txt ├── 10k ├── argumentWordlist-10k.txt ├── fieldWordlist-10k.txt ├── mutationFieldWordlist-10k.txt ├── mutationTypeWordlist-10k.txt ├── operationFieldWordlist-10k.txt ├── operationTypeWordlist-10k.txt ├── overallWordlist-10k.txt ├── queryFieldWordlist-10k.txt ├── queryTypeWordlist-10k.txt ├── subscriptionFieldWordlist-10k.txt ├── subscriptionTypeWordlist-10k.txt └── typeWordlist-10k.txt ├── 1k ├── argumentWordlist-1k.txt ├── fieldWordlist-1k.txt ├── mutationFieldWordlist-1k.txt ├── mutationTypeWordlist-1k.txt ├── operationFieldWordlist-1k.txt ├── operationTypeWordlist-1k.txt ├── overallWordlist-1k.txt ├── queryFieldWordlist-1k.txt ├── queryTypeWordlist-1k.txt ├── subscriptionFieldWordlist-1k.txt ├── subscriptionTypeWordlist-1k.txt └── typeWordlist-1k.txt ├── argumentWordlist.csv ├── argumentWordlist.txt ├── fieldWordlist.csv ├── fieldWordlist.txt ├── mutationFieldWordlist.csv ├── mutationFieldWordlist.txt ├── mutationTypeWordlist.csv ├── mutationTypeWordlist.txt ├── operationFieldWordlist.csv ├── operationFieldWordlist.txt ├── operationTypeWordlist.csv ├── operationTypeWordlist.txt ├── overallWordlist.csv ├── overallWordlist.txt ├── queryFieldWordlist.csv ├── queryFieldWordlist.txt ├── queryTypeWordlist.csv ├── queryTypeWordlist.txt ├── subscriptionFieldWordlist.csv ├── subscriptionFieldWordlist.txt ├── subscriptionTypeWordlist.csv ├── subscriptionTypeWordlist.txt ├── typeWordlist.csv ├── typeWordlist.txt └── wordlist.csv /.gitignore: -------------------------------------------------------------------------------- 1 | introspections 2 | urls.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/README.md -------------------------------------------------------------------------------- /fetch-introspections.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/fetch-introspections.sh -------------------------------------------------------------------------------- /generate-additional-wordlists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/generate-additional-wordlists.ts -------------------------------------------------------------------------------- /generate-readme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/generate-readme.ts -------------------------------------------------------------------------------- /generate-wordlist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/generate-wordlist.ts -------------------------------------------------------------------------------- /types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/types.ts -------------------------------------------------------------------------------- /urls-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/urls-template.json -------------------------------------------------------------------------------- /wordlists/100k/argumentWordlist-100k.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/wordlists/100k/argumentWordlist-100k.txt -------------------------------------------------------------------------------- /wordlists/100k/fieldWordlist-100k.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/wordlists/100k/fieldWordlist-100k.txt -------------------------------------------------------------------------------- /wordlists/100k/mutationFieldWordlist-100k.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/wordlists/100k/mutationFieldWordlist-100k.txt -------------------------------------------------------------------------------- /wordlists/100k/mutationTypeWordlist-100k.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/wordlists/100k/mutationTypeWordlist-100k.txt -------------------------------------------------------------------------------- /wordlists/100k/operationFieldWordlist-100k.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/wordlists/100k/operationFieldWordlist-100k.txt -------------------------------------------------------------------------------- /wordlists/100k/operationTypeWordlist-100k.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/wordlists/100k/operationTypeWordlist-100k.txt -------------------------------------------------------------------------------- /wordlists/100k/overallWordlist-100k.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/wordlists/100k/overallWordlist-100k.txt -------------------------------------------------------------------------------- /wordlists/100k/queryFieldWordlist-100k.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/wordlists/100k/queryFieldWordlist-100k.txt -------------------------------------------------------------------------------- /wordlists/100k/queryTypeWordlist-100k.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/wordlists/100k/queryTypeWordlist-100k.txt -------------------------------------------------------------------------------- /wordlists/100k/subscriptionFieldWordlist-100k.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/wordlists/100k/subscriptionFieldWordlist-100k.txt -------------------------------------------------------------------------------- /wordlists/100k/subscriptionTypeWordlist-100k.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/wordlists/100k/subscriptionTypeWordlist-100k.txt -------------------------------------------------------------------------------- /wordlists/100k/typeWordlist-100k.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/wordlists/100k/typeWordlist-100k.txt -------------------------------------------------------------------------------- /wordlists/10k/argumentWordlist-10k.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/wordlists/10k/argumentWordlist-10k.txt -------------------------------------------------------------------------------- /wordlists/10k/fieldWordlist-10k.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/wordlists/10k/fieldWordlist-10k.txt -------------------------------------------------------------------------------- /wordlists/10k/mutationFieldWordlist-10k.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/wordlists/10k/mutationFieldWordlist-10k.txt -------------------------------------------------------------------------------- /wordlists/10k/mutationTypeWordlist-10k.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/wordlists/10k/mutationTypeWordlist-10k.txt -------------------------------------------------------------------------------- /wordlists/10k/operationFieldWordlist-10k.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/wordlists/10k/operationFieldWordlist-10k.txt -------------------------------------------------------------------------------- /wordlists/10k/operationTypeWordlist-10k.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/wordlists/10k/operationTypeWordlist-10k.txt -------------------------------------------------------------------------------- /wordlists/10k/overallWordlist-10k.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/wordlists/10k/overallWordlist-10k.txt -------------------------------------------------------------------------------- /wordlists/10k/queryFieldWordlist-10k.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/wordlists/10k/queryFieldWordlist-10k.txt -------------------------------------------------------------------------------- /wordlists/10k/queryTypeWordlist-10k.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/wordlists/10k/queryTypeWordlist-10k.txt -------------------------------------------------------------------------------- /wordlists/10k/subscriptionFieldWordlist-10k.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/wordlists/10k/subscriptionFieldWordlist-10k.txt -------------------------------------------------------------------------------- /wordlists/10k/subscriptionTypeWordlist-10k.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/wordlists/10k/subscriptionTypeWordlist-10k.txt -------------------------------------------------------------------------------- /wordlists/10k/typeWordlist-10k.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/wordlists/10k/typeWordlist-10k.txt -------------------------------------------------------------------------------- /wordlists/1k/argumentWordlist-1k.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/wordlists/1k/argumentWordlist-1k.txt -------------------------------------------------------------------------------- /wordlists/1k/fieldWordlist-1k.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/wordlists/1k/fieldWordlist-1k.txt -------------------------------------------------------------------------------- /wordlists/1k/mutationFieldWordlist-1k.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/wordlists/1k/mutationFieldWordlist-1k.txt -------------------------------------------------------------------------------- /wordlists/1k/mutationTypeWordlist-1k.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/wordlists/1k/mutationTypeWordlist-1k.txt -------------------------------------------------------------------------------- /wordlists/1k/operationFieldWordlist-1k.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/wordlists/1k/operationFieldWordlist-1k.txt -------------------------------------------------------------------------------- /wordlists/1k/operationTypeWordlist-1k.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/wordlists/1k/operationTypeWordlist-1k.txt -------------------------------------------------------------------------------- /wordlists/1k/overallWordlist-1k.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/wordlists/1k/overallWordlist-1k.txt -------------------------------------------------------------------------------- /wordlists/1k/queryFieldWordlist-1k.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/wordlists/1k/queryFieldWordlist-1k.txt -------------------------------------------------------------------------------- /wordlists/1k/queryTypeWordlist-1k.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/wordlists/1k/queryTypeWordlist-1k.txt -------------------------------------------------------------------------------- /wordlists/1k/subscriptionFieldWordlist-1k.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/wordlists/1k/subscriptionFieldWordlist-1k.txt -------------------------------------------------------------------------------- /wordlists/1k/subscriptionTypeWordlist-1k.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/wordlists/1k/subscriptionTypeWordlist-1k.txt -------------------------------------------------------------------------------- /wordlists/1k/typeWordlist-1k.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/wordlists/1k/typeWordlist-1k.txt -------------------------------------------------------------------------------- /wordlists/argumentWordlist.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/wordlists/argumentWordlist.csv -------------------------------------------------------------------------------- /wordlists/argumentWordlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/wordlists/argumentWordlist.txt -------------------------------------------------------------------------------- /wordlists/fieldWordlist.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/wordlists/fieldWordlist.csv -------------------------------------------------------------------------------- /wordlists/fieldWordlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/wordlists/fieldWordlist.txt -------------------------------------------------------------------------------- /wordlists/mutationFieldWordlist.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/wordlists/mutationFieldWordlist.csv -------------------------------------------------------------------------------- /wordlists/mutationFieldWordlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/wordlists/mutationFieldWordlist.txt -------------------------------------------------------------------------------- /wordlists/mutationTypeWordlist.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/wordlists/mutationTypeWordlist.csv -------------------------------------------------------------------------------- /wordlists/mutationTypeWordlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/wordlists/mutationTypeWordlist.txt -------------------------------------------------------------------------------- /wordlists/operationFieldWordlist.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/wordlists/operationFieldWordlist.csv -------------------------------------------------------------------------------- /wordlists/operationFieldWordlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/wordlists/operationFieldWordlist.txt -------------------------------------------------------------------------------- /wordlists/operationTypeWordlist.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/wordlists/operationTypeWordlist.csv -------------------------------------------------------------------------------- /wordlists/operationTypeWordlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/wordlists/operationTypeWordlist.txt -------------------------------------------------------------------------------- /wordlists/overallWordlist.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/wordlists/overallWordlist.csv -------------------------------------------------------------------------------- /wordlists/overallWordlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/wordlists/overallWordlist.txt -------------------------------------------------------------------------------- /wordlists/queryFieldWordlist.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/wordlists/queryFieldWordlist.csv -------------------------------------------------------------------------------- /wordlists/queryFieldWordlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/wordlists/queryFieldWordlist.txt -------------------------------------------------------------------------------- /wordlists/queryTypeWordlist.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/wordlists/queryTypeWordlist.csv -------------------------------------------------------------------------------- /wordlists/queryTypeWordlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/wordlists/queryTypeWordlist.txt -------------------------------------------------------------------------------- /wordlists/subscriptionFieldWordlist.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/wordlists/subscriptionFieldWordlist.csv -------------------------------------------------------------------------------- /wordlists/subscriptionFieldWordlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/wordlists/subscriptionFieldWordlist.txt -------------------------------------------------------------------------------- /wordlists/subscriptionTypeWordlist.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/wordlists/subscriptionTypeWordlist.csv -------------------------------------------------------------------------------- /wordlists/subscriptionTypeWordlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/wordlists/subscriptionTypeWordlist.txt -------------------------------------------------------------------------------- /wordlists/typeWordlist.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/wordlists/typeWordlist.csv -------------------------------------------------------------------------------- /wordlists/typeWordlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/wordlists/typeWordlist.txt -------------------------------------------------------------------------------- /wordlists/wordlist.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Escape-Technologies/graphql-wordlist/HEAD/wordlists/wordlist.csv --------------------------------------------------------------------------------