From 5a3fa0c86a2fbfcb27f1c494d5d5da513d9ff822 Mon Sep 17 00:00:00 2001 From: schoobydrew <36652374+schoobydrew@users.noreply.github.com> Date: Mon, 27 Jun 2022 15:55:10 -0500 Subject: [PATCH] update exec_advanced call to use self.url attr instead of func args value --- bin/graphqlmap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/graphqlmap b/bin/graphqlmap index 634b7ae..990c623 100755 --- a/bin/graphqlmap +++ b/bin/graphqlmap @@ -71,7 +71,7 @@ class GraphQLmap(object): blind_mssql(self.url, self.method, self.proxy, self.headers, self.use_json) else: - exec_advanced(args_graphql.url, self.method, query, self.proxy, self.headers, self.use_json) + exec_advanced(self.url, self.method, query, self.proxy, self.headers, self.use_json) if __name__ == "__main__":