Merge pull request #44 from schoobydrew/arg-fix

update exec_advanced call to use self.url attr instead of func args value
master
Swissky 2023-01-24 12:47:36 +01:00 committed by GitHub
commit e4eeaa372a
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__":