2016-10-26 19:08:23 -04:00
|
|
|
"""
|
|
|
|
* *******************************************************
|
|
|
|
* Copyright (c) VMware, Inc. 2013, 2016. All Rights Reserved.
|
2017-03-15 18:36:13 -04:00
|
|
|
* SPDX-License-Identifier: MIT
|
2016-10-26 19:08:23 -04:00
|
|
|
* *******************************************************
|
|
|
|
*
|
|
|
|
* DISCLAIMER. THIS PROGRAM IS PROVIDED TO YOU "AS IS" WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, WHETHER ORAL OR WRITTEN,
|
|
|
|
* EXPRESS OR IMPLIED. THE AUTHOR SPECIFICALLY DISCLAIMS ANY IMPLIED
|
|
|
|
* WARRANTIES OR CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY,
|
|
|
|
* NON-INFRINGEMENT AND FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
"""
|
|
|
|
|
|
|
|
__author__ = 'VMware, Inc.'
|
|
|
|
|
|
|
|
import ssl
|
2018-03-08 16:02:07 -05:00
|
|
|
import requests
|
2016-10-26 19:08:23 -04:00
|
|
|
|
|
|
|
|
|
|
|
def get_unverified_context():
|
|
|
|
"""
|
|
|
|
Get an unverified ssl context. Used to disable the server certificate
|
|
|
|
verification.
|
|
|
|
@return: unverified ssl context.
|
|
|
|
"""
|
|
|
|
context = None
|
|
|
|
if hasattr(ssl, '_create_unverified_context'):
|
|
|
|
context = ssl._create_unverified_context()
|
|
|
|
return context
|
2018-03-08 16:02:07 -05:00
|
|
|
|
|
|
|
|
|
|
|
def get_unverified_session():
|
|
|
|
"""
|
|
|
|
Get a requests session with cert verification disabled.
|
|
|
|
Also disable the insecure warnings message.
|
|
|
|
Note this is not recommended in production code.
|
|
|
|
@return: a requests session with verification disabled.
|
|
|
|
"""
|
|
|
|
session = requests.session()
|
|
|
|
session.verify = False
|
|
|
|
requests.packages.urllib3.disable_warnings()
|
|
|
|
return session
|