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
The library uses python's httplib.HTTPSConnection to connect to the Dyn API endpoint. The python documentation notes "Warning: This does not do any verification of the server’s certificate."
Without certificate verification, if an attacker is able to intercept the traffic she can read or even alter the communications.
It does not seem that httplib provides a way to do this verification. Some people have produced a HTTPSConnection wrapper to do validation. Other people recommend using pycurl.
The text was updated successfully, but these errors were encountered:
The library uses python's
httplib.HTTPSConnection
to connect to the Dyn API endpoint. The python documentation notes "Warning: This does not do any verification of the server’s certificate."Without certificate verification, if an attacker is able to intercept the traffic she can read or even alter the communications.
It does not seem that
httplib
provides a way to do this verification. Some people have produced aHTTPSConnection
wrapper to do validation. Other people recommend usingpycurl
.The text was updated successfully, but these errors were encountered: