| Server IP : 66.29.146.62 / Your IP : 216.73.216.152 Web Server : LiteSpeed System : Linux premium231.web-hosting.com 4.18.0-553.45.1.lve.el8.x86_64 #1 SMP Wed Mar 26 12:08:09 UTC 2025 x86_64 User : dokkdzvi ( 925) PHP Version : 8.1.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /opt/alt/python38/lib/python3.8/site-packages/urllib3/contrib/__pycache__/ |
Upload File : |
U
��`� � @ sp d Z ddlmZ ddlZddlmZ ddlmZ ddlmZ ddl m
Z
e�d e� ee
�ZG d
d� de�ZdS )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 s: e Zd ZdZdZ� fdd�Zdd� Zd� fd
d� Z� ZS )
�NTLMConnectionPoolzQ
Implements an NTLM authentication version of an urllib3 connection pool
�httpsc sL t t| �j||� || _|| _|�dd�}|d �� | _|d | _|| _ dS )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�kwargsZ
user_parts�� __class__� �I/opt/alt/python38/lib/python3.8/site-packages/urllib3/contrib/ntlmpool.pyr
"