├── .gitignore ├── CrackQL.py ├── LICENSE ├── README.md ├── config.py ├── lib ├── generator.py ├── helpers.py ├── parser.py └── validations.py ├── poetry.lock ├── pyproject.toml ├── requirements.txt ├── sample-inputs └── usernames_and_passwords.csv ├── sample-queries ├── enumeration.graphql.md ├── idor.graphql.md ├── login.graphql └── otp-bypass.graphql.md ├── static ├── CrackQL-Banner.png └── CrackQL.png └── version.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasaleks/CrackQL/HEAD/.gitignore -------------------------------------------------------------------------------- /CrackQL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasaleks/CrackQL/HEAD/CrackQL.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasaleks/CrackQL/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasaleks/CrackQL/HEAD/README.md -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasaleks/CrackQL/HEAD/config.py -------------------------------------------------------------------------------- /lib/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasaleks/CrackQL/HEAD/lib/generator.py -------------------------------------------------------------------------------- /lib/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasaleks/CrackQL/HEAD/lib/helpers.py -------------------------------------------------------------------------------- /lib/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasaleks/CrackQL/HEAD/lib/parser.py -------------------------------------------------------------------------------- /lib/validations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasaleks/CrackQL/HEAD/lib/validations.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasaleks/CrackQL/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasaleks/CrackQL/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasaleks/CrackQL/HEAD/requirements.txt -------------------------------------------------------------------------------- /sample-inputs/usernames_and_passwords.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasaleks/CrackQL/HEAD/sample-inputs/usernames_and_passwords.csv -------------------------------------------------------------------------------- /sample-queries/enumeration.graphql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasaleks/CrackQL/HEAD/sample-queries/enumeration.graphql.md -------------------------------------------------------------------------------- /sample-queries/idor.graphql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasaleks/CrackQL/HEAD/sample-queries/idor.graphql.md -------------------------------------------------------------------------------- /sample-queries/login.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasaleks/CrackQL/HEAD/sample-queries/login.graphql -------------------------------------------------------------------------------- /sample-queries/otp-bypass.graphql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasaleks/CrackQL/HEAD/sample-queries/otp-bypass.graphql.md -------------------------------------------------------------------------------- /static/CrackQL-Banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasaleks/CrackQL/HEAD/static/CrackQL-Banner.png -------------------------------------------------------------------------------- /static/CrackQL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicholasaleks/CrackQL/HEAD/static/CrackQL.png -------------------------------------------------------------------------------- /version.py: -------------------------------------------------------------------------------- 1 | VERSION = '1.1' 2 | --------------------------------------------------------------------------------