-
Notifications
You must be signed in to change notification settings - Fork 297
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
HPHosts Collector Error #1017
Comments
Status code 999 is interesting. Is it reproducible? Did you check the proxy settings? Can you get the page with other tools from this host (e.g. curl, wget)? Please consider using the intelmq-users list for support, not the bug tracker. Thanks! |
Yes, I can download the report using curl and wget. I have used the same bot configuration in different operating systems and they all return the same error.
Alright! |
For a temp workaround, remove it manually by editing |
Either a bug in requests or at hosts-file.de: >>> r = requests.get('http://hosts-file.net/download/hosts.txt')
>>> r.status_code
200
>>> r = requests.get('http://hosts-file.net/download/hosts.txt', auth=None)
>>> r.status_code
200
>>> r = requests.get('http://hosts-file.net/download/hosts.txt', auth=(None, None))
>>> r.status_code
999
>>> r = requests.get('http://example.com/', auth=(None, None))
>>> r.status_code
200 As workaround we can check if |
It is |
When using
And |
I configured the collector for the feed HPHosts with the following settings:
I think it is well configured, however everytime I run it, it throws the following error:
Does anyone knows how to solve this?
The text was updated successfully, but these errors were encountered: