-
Notifications
You must be signed in to change notification settings - Fork 88
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue Resolved and Library Updated #39
Comments
Same issue over here. DNSDumpster has updated their UI and other stuff. That's probably the cause of the issue. |
Hi everyone, I’ve completely reworked the library to address the issues caused by recent changes in DNSDumpster’s interface. The script is now fully functional and has been updated to align with the new HTML structure and session requirements.
Additionally, I’ve attached the updated script as a compressed file in this thread, and I’ll be submitting a pull request soon to share the changes with everyone. Best regards, |
Check... Works on my machine :) |
Description
I'm encountering an issue with the dnsdumpster library while attempting to perform a data lookup. The error occurs when running the following code:
from dnsdumpster.DNSDumpsterAPI import DNSDumpsterAPI
results = DNSDumpsterAPI().search('microsoft.com')
print(results)
Error Message
The generated error is as follows:
Traceback (most recent call last):
File "my_script.py", line 2, in
results = DNSDumpsterAPI().search('microsoft.com')
File "...\site-packages\dnsdumpster\DNSDumpsterAPI.py", line 72, in search
csrf_middleware = soup.findAll('input', attrs={'name': 'csrfmiddlewaretoken'})[0]['value']
IndexError: list index out of range
Observations
Request
Is there an update to the library or a temporary fix for this issue?
The text was updated successfully, but these errors were encountered: