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
and for the other issue, add a ssl_verify setting server-wide (irisweb side), fetch it from vt_handler. Then, virus-total-apis doesn't use any ssl_verify argument unfortunately, so we should issue to them or do some patch on requests package...
The text was updated successfully, but these errors were encountered:
@Ektoplasma you self-assigned this issue, just checking you didn't want to contribute to the project yourself? if not I can create a pull request with your solution to the proxy setting.
Also a suggestion for avoiding having to set ssl_verify setting, consider just adding the cert for your local instance of virus total to your trusted ca folder inside the iris docker container - this is what we've done (but your idea to be able to pass through the flag would be superior).
The issue
There is an issue in vt_handler#L49 where proxy settings are not properly fetched from the server settings:
HTTP_PROXY and HTTPS_PROXY do not exist in uppercase, only lowercase, plus there is a confusion between http and https proxy.
Moreover, there is no possibility to disable the SSL cert verification, which is problematic for some proxy setups.
Solution
should be:
and for the other issue, add a ssl_verify setting server-wide (irisweb side), fetch it from vt_handler. Then, virus-total-apis doesn't use any ssl_verify argument unfortunately, so we should issue to them or do some patch on requests package...
The text was updated successfully, but these errors were encountered: