| Server IP : 209.209.40.120 / Your IP : 216.73.217.112 Web Server : Microsoft-IIS/10.0 System : Windows NT NEWWWW 10.0 build 17763 (Windows Server 2019) i586 User : NEWWWW$ ( 0) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/Python312/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ |
Upload File : |
�
�k�f� � � � d Z ddlmZ ddlZddlmZ ddlmZ ddlmZ ddl m
Z
ej d e� ee
� Z G d
� de� Zy)z
NTLM authenticating pool, contributed by erikcederstran
Issue #10, see: http://code.google.com/p/urllib3/issues/detail?id=10
� )�absolute_importN)� getLogger)�ntlm� )�HTTPSConnectionPool)�HTTPSConnectiona# The 'urllib3.contrib.ntlmpool' module is deprecated and will be removed in urllib3 v2.0 release, urllib3 is not able to support it properly due to reasons listed in issue: https://github.com/urllib3/urllib3/issues/2282. If you are a user of this module please comment in the mentioned issue.c �B � � e Zd ZdZdZ� fd�Zd� Z d� fd� Z� xZS )�NTLMConnectionPoolzQ
Implements an NTLM authentication version of an urllib3 connection pool
�httpsc � �� t t | �
|i |�� || _ || _ |j dd� }|d j
� | _ |d | _ || _ y)z�
authurl is a random URL on the server that is protected by NTLM.
user is the Windows user, probably in the DOMAIN\username format.
pw is the password for the user.
�\� r N)
�superr
�__init__�authurl�rawuser�split�upper�domain�user�pw)�selfr r r �args�kwargs�
user_parts� __class__s ��FC:\Python312\Lib\site-packages\pip/_vendor/urllib3/contrib/ntlmpool.pyr zNTLMConnectionPool.__init__"