Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
lib /
python3 /
dist-packages /
boto /
__pycache__ /
[ HOME SHELL ]
Name
Size
Permission
Action
__init__.cpython-310.pyc
31.33
KB
-rw-r--r--
auth.cpython-310.pyc
28.84
KB
-rw-r--r--
auth_handler.cpython-310.pyc
1.5
KB
-rw-r--r--
compat.cpython-310.pyc
2.07
KB
-rw-r--r--
connection.cpython-310.pyc
32.05
KB
-rw-r--r--
endpoints.cpython-310.pyc
8.1
KB
-rw-r--r--
exception.cpython-310.pyc
17.35
KB
-rw-r--r--
handler.cpython-310.pyc
1.87
KB
-rw-r--r--
https_connection.cpython-310.p...
4.42
KB
-rw-r--r--
jsonresponse.cpython-310.pyc
4.27
KB
-rw-r--r--
plugin.cpython-310.pyc
1.81
KB
-rw-r--r--
provider.cpython-310.pyc
11.63
KB
-rw-r--r--
regioninfo.cpython-310.pyc
7.12
KB
-rw-r--r--
requestlog.cpython-310.pyc
1.74
KB
-rw-r--r--
resultset.cpython-310.pyc
4.61
KB
-rw-r--r--
storage_uri.cpython-310.pyc
30.2
KB
-rw-r--r--
utils.cpython-310.pyc
28.99
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : connection.cpython-310.pyc
o ckF[3� � @ s d Z ddlmZ ddlZddlZddlZddlZddlZddlZddlZddl Z ddlZddlm Z ddlmZ ddlZddlZddlZddlZddlmZmZ ddlmZmZmZmZmZ ddlmZ dd lmZ dd lmZ ddlmZ ddlm Z dd l!m"Z" dZ#zddl$Z$ddlm%Z% e&e$d�r�dZ#W n e'y� Y nw zddl(Z(W n e'y� ddl)Z(Y nw e*dd� dD ��Z+ddd�Z,ej-�.ej-�/ej-�0ej1j2��d�Z3G dd� de4�Z5G dd� de4�Z6G dd� de4�Z7G dd � d ej8�Z8G d!d"� d"e4�Z9G d#d$� d$e9�Z:dS )%z" Handles basic connections to AWS � )�datetimeN)�auth)�auth_handler)�config� UserAgent)�six�http_client�urlparse�quote�encodebytes)�AWSConnectionError)�BotoClientError)�BotoServerError)�PleaseRetryException)�Provider)� ResultSetF)�https_connection�SSLErrorTc c s � | ]}|t jv V qd S �N)�os�environ)�.0�key� r �1/usr/lib/python3/dist-packages/boto/connection.py� <genexpr>W s � r )� USER_IS_ADMIN�CURRENT_VERSION_ID�APPLICATION_ID� �P )TFzcacerts.txtc @ sH e Zd ZdZdd� Zdd� Zdd� Zdd � Zd d� Zdd � Z dd� Z dS )�HostConnectionPoola� A pool of connections for one remote (host,port,is_secure). When connections are added to the pool, they are put into a pending queue. The _mexe method returns connections to the pool before the response body has been read, so they connections aren't ready to send another request yet. They stay in the pending queue until they are ready for another request, at which point they are returned to the pool of ready connections. The pool of ready connections is an ordered list of (connection,time) pairs, where the time is the time the connection was returned from _mexe. After a certain period of time, connections are considered stale, and discarded rather than being reused. This saves having to wait for the connection to time out if AWS has decided to close it on the other end because of inactivity. Thread Safety: This class is used only from ConnectionPool while it's mutex is held. c C s g | _ d S r )�queue��selfr r r �__init__z � zHostConnectionPool.__init__c C s t | j�S )z� Returns the number of connections in the pool for this host. Some of the connections may still be in use, and may not be ready to be returned by get(). )�lenr"