You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying this tool for the first time and this error occured: main.py: error: argument -w/--wordlist: can't open './overall.txt': [Errno 2] No such file or directory: './overall.txt'
My command:
docker run --rm nikitastupin/clairvoyance -i ./test.json -o ./testOut.txt -w ./overall.txt https:///cms/graphql
I tried absolute path instead but nothing different. Any suggestion?
The text was updated successfully, but these errors were encountered:
Sorry for long response. It's likely due to the fact that you are using a docker, since docker makes its own filesystem, the program tries to reach the file locally. To circumvent this issue, you can bind a volume: https://docs.docker.com/engine/storage/bind-mounts/
It ran but another issue happened.
I copied json data in HTTP response (both regular and introspection request) on example https://rickandmortyapi.com/graphql and throw it into test.json file, then run the tool but something wrong in python's code. When i run with regular json data, it returned some python error and [ KeyError: '__schema' ], with introspection json data it's [ KeyError: 'ofType' ]
I'm wondering if the issue is from my json file
I'm trying this tool for the first time and this error occured:
main.py: error: argument -w/--wordlist: can't open './overall.txt': [Errno 2] No such file or directory: './overall.txt'
My command:
docker run --rm nikitastupin/clairvoyance -i ./test.json -o ./testOut.txt -w ./overall.txt https:///cms/graphql
I tried absolute path instead but nothing different. Any suggestion?
The text was updated successfully, but these errors were encountered: