Merge pull request #12 from fuomag9/windows-support
Added experimental windows support and requirements.txtpull/13/head
commit
1b674c2ad0
|
@ -54,11 +54,11 @@ python3 graphqlmap.py -u https://yourhostname.com/graphql -v --method POST --hea
|
|||
|
||||
### Dump a GraphQL schema
|
||||
|
||||
Use `dump` to dump the GraphQL schema, this function will automaticly populate the "autocomplete" with the found fields.
|
||||
Use `dump_new` to dump the GraphQL schema, this function will automaticly populate the "autocomplete" with the found fields.
|
||||
[:movie_camera: Live Example](https://asciinema.org/a/14YuWoDOyCztlx7RFykILit4S)
|
||||
|
||||
```powershell
|
||||
GraphQLmap > dump
|
||||
GraphQLmap > dump_new
|
||||
============= [SCHEMA] ===============
|
||||
e.g: name[Type]: arg (Type!)
|
||||
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
#!/usr/bin/python
|
||||
try:
|
||||
import readline
|
||||
except ImportError:
|
||||
import pyreadline as readline
|
||||
|
||||
from attacks import *
|
||||
import urllib3
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
pyreadline ; sys_platform == 'win32'
|
||||
readline ; sys_platform !='win32'
|
||||
argparse
|
||||
requests
|
Loading…
Reference in New Issue