You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you enables --reputation-lookup && --reputation then they do not obey the proxy settings
File"/usr/lib/python3/dist-packages/requests/adapters.py", line516, insendraiseConnectionError(e, request=request)
requests.exceptions.ConnectionError: HTTPSConnectionPool(host='reputation.alienvault.com', port=443): Maxretriesexceededwithurl: /reputation.data (CausedbyNewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7fec793377d0>: Failed to establish a new connection: [Errno -2] Name or service not known'))
This patch fixes#349.
Indeed, before this patch, only test related HTTP requests were
complying with the proxy settings declared by end-users through
the configuration files.
From now on, any download will comply with the proxy settings.
To solve the problem, I just fixed the DownloaderHelper to
let us pass some session or our custom requester object that
has a similar API as requests's Session API.
Contributors:
* @spirillen
Description
If you enables
--reputation-lookup
&&--reputation
then they do not obey the proxy settingsLog
Possible Solution
make sure the global[rules] are used if set.
Considered Alternative
rather boring as I would have to force the entire box to use proxy ala
Additional context
Just stumbled on it
The text was updated successfully, but these errors were encountered: