update exec_advanced call to use self.url attr instead of func args value

pull/44/head
schoobydrew 2022-06-27 15:55:10 -05:00 committed by GitHub
parent 98997bd7cf
commit 5a3fa0c86a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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__":