From 15c1afa5ecfce475f5e25030699aca85352e2fee Mon Sep 17 00:00:00 2001 From: fuomag9 Date: Wed, 5 Feb 2020 13:43:03 +0100 Subject: [PATCH] Add windows support (experimental) --- graphqlmap.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/graphqlmap.py b/graphqlmap.py index fd23453..32bca60 100755 --- a/graphqlmap.py +++ b/graphqlmap.py @@ -1,5 +1,8 @@ #!/usr/bin/python -import readline +try: + import readline +except ImportError: + import pyreadline as readline from attacks import * import urllib3