Skip to content

Commit

Permalink
Fix issue aboul3la#356 - DNSDumpster params
Browse files Browse the repository at this point in the history
  • Loading branch information
huntergregal committed Feb 5, 2023
1 parent 729d649 commit a67b150
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sublist3r.py
Original file line number Diff line number Diff line change
Expand Up @@ -645,7 +645,7 @@ def enumerate(self):
self.lock = threading.BoundedSemaphore(value=70)
resp = self.req('GET', self.base_url)
token = self.get_csrftoken(resp)
params = {'csrfmiddlewaretoken': token, 'targetip': self.domain}
params = {'csrfmiddlewaretoken': token, 'targetip': self.domain, 'user': 'free'}
post_resp = self.req('POST', self.base_url, params)
self.extract_domains(post_resp)
for subdomain in self.subdomains:
Expand Down

0 comments on commit a67b150

Please sign in to comment.