shell bypass 403

GrazzMean-Shell Shell

Uname: Linux business55.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
Software: LiteSpeed
PHP version: 8.1.31 [ PHP INFO ] PHP os: Linux
Server Ip: 162.213.251.212
Your Ip: 18.116.47.4
User: allssztx (535) | Group: allssztx (533)
Safe Mode: OFF
Disable Function:
NONE

name : base64.cpython-313.pyc
�

+}g�T����SrSSKrSSKrSSKr/SQr\\4rSrS:Sjr	S;Sjr
SrS	r\RS
S5r\RSS
5rSrS
rSrSrSrSrSr0r0rSrS<SjrSr\R9SS9\lS<Sjr\R9S\S9\lSr\R9SS9\lS=Sjr\R9SSS9\lSr S=Sjr!Sq"Sq#S r$S!r%S>S"jr&SSSSS#.S$jr'SSS%S&.S'jr(S(r)Sq*Sq+Sq,S=S)jr-S*r.S+r/S,r0\R\/\0-\)S-\1"\05--5r2\R\)\/5r3S.r4S/r5S0r6\6S1-S2-r7S3r8S4r9S5r:S6r;S7r<S8r=\>S9:Xa\="5 gg)?zDBase16, Base32, Base64 (RFC 3548), Base85 and Ascii85 data encodings�N)�encode�decode�encodebytes�decodebytes�	b64encode�	b64decode�	b32encode�	b32decode�b32hexencode�b32hexdecode�	b16encode�	b16decode�	b85encode�	b85decode�	a85encode�	a85decode�	z85encode�	z85decode�standard_b64encode�standard_b64decode�urlsafe_b64encode�urlsafe_b64decodec�F�[U[5(aURS5$[U[
5(aU$[
U5R5$![a [	S5ef=f![a$ [SURR-5Sef=f)N�asciiz4string argument should contain only ASCII charactersz>argument should be a bytes-like object or ASCII string, not %r)�
isinstance�strr�UnicodeEncodeError�
ValueError�bytes_types�
memoryview�tobytes�	TypeError�	__class__�__name__��ss �-/opt/alt/python313/lib64/python3.13/base64.py�_bytes_from_decode_datar("s����!�S���	U��8�8�G�$�$��!�[�!�!���K��!�}�$�$�&�&��"�	U��S�T�T�	U���K��)�+,�;�;�+?�+?�@�A�FJ�	K�K�s�A�A2�A/�2.B c��[R"USS9nUbD[U5S:Xd[U55eUR	[
R
SU55$U$)aEncode the bytes-like object s using Base64 and return a bytes object.

Optional altchars should be a byte string of length 2 which specifies an
alternative alphabet for the '+' and '/' characters.  This allows an
application to e.g. generate url or filesystem safe Base64 strings.
F)�newline��+/)�binascii�
b2a_base64�len�repr�	translate�bytes�	maketrans)r&�altchars�encodeds   r'rr3sX���!�!�!�U�3�G����8�}��!�1�4��>�1�!�� � ������!A�B�B��N�Fc���[U5nUbO[U5n[U5S:Xd[U55eUR[RUS55n[R"XS9$)a�Decode the Base64 encoded bytes-like object or ASCII string s.

Optional altchars must be a bytes-like object or ASCII string of length 2
which specifies the alternative alphabet used instead of the '+' and '/'
characters.

The result is returned as a bytes object.  A binascii.Error is raised if
s is incorrectly padded.

If validate is False (the default), characters that are neither in the
normal base-64 alphabet nor the alternative alphabet are discarded prior
to the padding check.  If validate is True, these non-alphabet characters
in the input result in a binascii.Error.
For more information about the strict base64 check, see:

https://docs.python.org/3.11/library/binascii.html#binascii.a2b_base64
r+r,)�strict_mode)r(r/r0r1r2r3r-�
a2b_base64)r&r4�validates   r'rrAsc��$	 ��"�A���*�8�4���8�}��!�1�4��>�1�!�
�K�K�����%�8�9�����q�7�7r6c��[U5$)zjEncode bytes-like object s using the standard Base64 alphabet.

The result is returned as a bytes object.
)rr%s r'rr[s��
�Q�<�r6c��[U5$)a=Decode bytes encoded with the standard Base64 alphabet.

Argument s is a bytes-like object or ASCII string to decode.  The result
is returned as a bytes object.  A binascii.Error is raised if the input
is incorrectly padded.  Characters that are not in the standard alphabet
are discarded prior to the padding check.
)rr%s r'rrbs���Q�<�r6r,s-_c�>�[U5R[5$)z�Encode bytes using the URL- and filesystem-safe Base64 alphabet.

Argument s is a bytes-like object to encode.  The result is returned as a
bytes object.  The alphabet uses '-' instead of '+' and '_' instead of
'/'.
)rr1�_urlsafe_encode_translationr%s r'rrps���Q�<�!�!�"=�>�>r6c�X�[U5nUR[5n[U5$)a�Decode bytes using the URL- and filesystem-safe Base64 alphabet.

Argument s is a bytes-like object or ASCII string to decode.  The result
is returned as a bytes object.  A binascii.Error is raised if the input
is incorrectly padded.  Characters that are not in the URL-safe base-64
alphabet, and are not a plus '+' or slash '/', are discarded prior to the
padding check.

The alphabet uses '-' instead of '+' and '_' instead of '/'.
)r(r1�_urlsafe_decode_translationrr%s r'rrys'��	 ��"�A�	���/�0�A��Q�<�r6zK
Encode the bytes-like objects using {encoding} and return a bytes object.
a�
Decode the {encoding} encoded bytes-like object or ASCII string s.

Optional casefold is a flag specifying whether a lowercase alphabet is
acceptable as input.  For security purposes, the default is False.
{extra_args}
The result is returned as a bytes object.  A binascii.Error is raised if
the input is incorrectly padded or if there are non-alphabet
characters present in the input.
a�
RFC 3548 allows for optional mapping of the digit 0 (zero) to the
letter O (oh), and for optional mapping of the digit 1 (one) to
either the letter I (eye) or letter L (el).  The optional argument
map01 when not None, specifies which letter the digit 1 should be
mapped to (when map01 is not None, the digit 0 is always mapped to
the letter O).  For security purposes the default is None, so that
0 and 1 are not allowed in the input.
s ABCDEFGHIJKLMNOPQRSTUVWXYZ234567s 0123456789ABCDEFGHIJKLMNOPQRSTUVc��U[;aEUVs/sHn[U45PM nnUVVs/sHoCHoTU-PM	 M snn[U'Sn[U[5(d[	U5R5n[
U5S-nU(aUSSU-
--n[5n[Rn[Un	[S[
U5S5H8nU"XUS-5n
XyU
S-	X�S-	S--X�S-	S--X�S---
nM: US:XaS	US
S&O#US:XaSUS
S&OUS:XaSUSS&OUS:XaSUSS&[U5$s snfs snnf)N��r��i��
�s======i����r+s====����s===�����=���)�_b32tab2r2rrr r!r/�	bytearray�int�
from_bytes�range)�alphabetr&�i�b32tab�a�b�leftoverr5rQ�b32tab2�cs           r'�
_b32encoder[�s{���x��'/�0�x�!�%���+�x��0�-3�D�V��V��!�e�V�e�V�D�������a��%�%��q�M�!�!�#���1�v��z�H��
���X��&�&���k�G����J��x� �G�
�1�c�!�f�a�
 ���q�A��E�{�#���A��G�$��"�W��-�.�/��"�W��-�.�/���I�&�'�	��!��1�}� �����	�Q�������	�Q�������	�Q���������>���;1��Ds
�E
�Ec���U[;a'[U5VVs0sHupEXT_M	 snn[U'[U5n[U5S-(a[R
"S5eUbR[U5n[U5S:Xd[
U55eUR[RSSU-55nU(aUR5n[U5nURS5nU[U5-
n[5n[Un	[S[U5S5H3n
XU
S-nSnUH
n
US-X�-nM X�RS5-
nM5 US-(dUS
;a[R
"S5eU(a3U(a,WSU--nURS5nSSU--
S-nUSUUSS&[U5$s snnf![a [R
"S	5Sef=f)
N�zIncorrect paddingrGs01�OrLrrBzNon-base32 digit found>rrGrIrK��+���)�_b32rev�	enumerater(r/r-�Errorr0r1r2r3�upper�rstriprOrR�KeyError�to_bytes)rSr&�casefold�map01�k�v�l�padchars�decoded�b32revrT�quanta�accrZ�lastrXs                r'�
_b32decodert�s����w��.7��.A�B�.A�d�a�Q�T�.A�B������"�A�
�1�v��z��n�n�0�1�1�
��'��.���5�z�Q��+��U��+��
�K�K�����t�e�|�<�=���
�G�G�I��	�A��A�	�����A��3�q�6�z�H��k�G�
�X�
�F�
�1�c�!�f�a�
 ���a�!�e�����	E����a�x�6�9�,���	�<�<��?�"��!�	�1�u���/��n�n�0�1�1��G���H�����|�|�A�����X��%�!�+���I�X��������>���OC��8�	E��.�.�!9�:��D�	E�s�G�2G
�
"G/c�"�[[U5$�N)r[�_b32alphabetr%s r'r	r	�s���l�A�&�&r6�base32)�encodingc�$�[[XU5$rv)rtrw)r&rirjs   r'r
r
�s���l�A��7�7r6)ry�
extra_argsc�"�[[U5$rv)r[�_b32hexalphabetr%s r'rrs���o�q�)�)r6�	base32hexc�"�[[X5$rv)rtr}�r&ris  r'rrs���o�q�3�3r6�c�J�[R"U5R5$)zKEncode the bytes-like object s using Base16 and return a bytes object.
    )r-�hexlifyrer%s r'r
r
s�����A��$�$�&�&r6c���[U5nU(aUR5n[R"SU5(a[R
"S5e[R"U5$)ajDecode the Base16 encoded bytes-like object or ASCII string s.

Optional casefold is a flag specifying whether a lowercase alphabet is
acceptable as input.  For security purposes, the default is False.

The result is returned as a bytes object.  A binascii.Error is raised if
s is incorrectly padded or if there are non-alphabet characters present
in the input.
s	[^0-9A-F]zNon-base16 digit found)r(re�re�searchr-rd�	unhexlifyr�s  r'rrsN��	 ��"�A��
�G�G�I��	�y�y��q�!�!��n�n�5�6�6����a� � r6s<~s~>c��[U[5(d[U5R5n[	U5*S-nU(aUSU--n[
R"S[	U5S--5RU5nUVs/sH<nU(a	U(dSO(U(aUS:XaSOX(S-X(S-S	--XS--PM> n	nU(a'U(d U	S
S:XaUSS-U	S
'U	S
SU*U	S
'S
RU	5$s snf)NrKrCz!%dI�zi    �yi�^	�Ui9rMrrBr6)	rrr r!r/�struct�Struct�unpack�join)
rW�chars�chars2�pad�foldnuls�
foldspaces�padding�words�word�chunkss
          r'�	_85encoder�.s���a��%�%��q�M�!�!�#���A��w�!�m�G��
�������M�M�&�C��F�a�K�0�1�8�8��;�E� �!�
 �$��t�d� �T�Z�%7�d��f�n�%��b�j�4�'�(�)��B�Y�� �!�
 ��!��s��"�:����q��A��F�2�J��B�Z�	�'��*��r�
��8�8�F����!s�AD	)r��wrapcolr��adobec�L�[cP[SS5Vs/sHn[U45PM snq[VVs/sHn[HoU-PM	 M snnq[	W[[USU5nU(a	[
U-nU(a}[
U(aSOSU5n[S[U5U5Vs/sH	nXuXR-PM nnU(a&[US5S-U:�aURS5 S	RU5nU(a	U[-
nU$s snfs snnfs snf)
a�Encode bytes-like object b using Ascii85 and return a bytes object.

foldspaces is an optional flag that uses the special short sequence 'y'
instead of 4 consecutive spaces (ASCII 0x20) as supported by 'btoa'. This
feature is not supported by the "standard" Adobe encoding.

wrapcol controls whether the output should have newline (b'\n') characters
added to it. If this is non-zero, each output line will be at most this
many characters long, excluding the trailing newline.

pad controls whether the input is padded to a multiple of 4 before
encoding. Note that the btoa implementation always pads.

adobe controls whether the encoded byte sequence is framed with <~ and ~>,
which is used by the Adobe implementation.
�!�vTr+rGrrMr6�
)�
_a85chars2rRr2�	_a85charsr��	_A85START�maxr/�appendr��_A85END)	rWr�r�r�r�rTrV�resultr�s	         r'rrFs��(��*/��C�.�9�.�Q�U�A�4�[�.�9�	�'0�D�y�!�)�)�Q�1�u�)�u�y�D�
�
�q�)�Z��d�J�
G�F���V�#����5�a�a��1�� ��C��K��9�;�9�a��A�K�(�9�	�;���6�"�:���"�W�,��
�
�c�"����F�#����'����M��%:��D��;s�D�D�4D!s 	

)r�r��ignorecharsc��[U5nU(a]UR[5(d[SR	[55eUR[5(aUSSnOUSSn[R"S5Rn/nURn/nURnURn	US-H�n
SU
s=::aS::aJO OGU"U
5 [U5S	:Xa.S
nUHn
SU-U
S-
-nM U"U"U55 U	"5 MXMZU
S
:XaU(a[S5eU"S5 M|U(a"U
S:XaU(a[S5eU"S5 M�X�;aM�[SU
-5e SRU5nS[U5-
n
U
(aUSU
*nU$![Ra
 [S5Sef=f)a^Decode the Ascii85 encoded bytes-like object or ASCII string b.

foldspaces is a flag that specifies whether the 'y' short sequence should be
accepted as shorthand for 4 consecutive spaces (ASCII 0x20). This feature is
not supported by the "standard" Adobe encoding.

adobe controls whether the input sequence is in Adobe Ascii85 format (i.e.
is framed with <~ and ~>).

ignorechars should be a byte string containing characters to ignore from the
input. This should only contain whitespace characters, and by default
contains all whitespace characters in ASCII.

The result is returned as a bytes object.
z1Ascii85 encoded byte sequences must end with {!r}r+���N�!Isuuuur��urBrr�zAscii85 overflow�zzz inside Ascii85 5-tuples�yzy inside Ascii85 5-tuples    zNon-Ascii85 digit found: %cr6rK)r(�endswithr�r�format�
startswithr�r�r��packr��clearr/�errorr�)rWr�r�r��packIro�decoded_append�curr�curr_append�
curr_clear�xrrr�r�s              r'rros��� 	 ��"�A���z�z�'�"�"���"�F�7�O��
�
�<�<�	�"�"��!�B��A��#�2��A�

�M�M�$��$�$�E��G��^�^�N�
�D��+�+�K����J�
��\���a�"�7�"���N��4�y�A�~����A��s�(�a�"�f�-�C��C�"�5��:�.�����'�\�� �!;�<�<��;�'�
�A��L�� �!;�<�<��.�/�
�
���:�Q�>�?�?�1�4�X�X�g�
�F��#�d�)�m�G���	�'��"���M��-�|�|�C�$�%7�8�d�B�C�s�>F'�'!GsU0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz!#$%&()*+-;<=>?@^_`{|}~c���[cJ[Vs/sHn[U45PM snq[VVs/sHn[HoU-PM	 M snnq[	W[[U5$s snfs snnf)z�Encode bytes-like object b in base85 format and return a bytes object.

If pad is true, the input is padded with b'\0' so its length is a multiple of
4 bytes before encoding.
)�
_b85chars2�_b85alphabetr2�	_b85charsr�)rWr�rTrVs    r'rr�s]����*6�7�,�Q�U�A�4�[�,�7�	�'0�D�y�!�)�)�Q�1�u�)�u�y�D�
��Q�	�:�s�3�3��8��Ds
�A(�A-c��[c'S/S-q[[5HupU[U'M [U5n[	U5*S-nUSU--n/n[
R"S5Rn[S[	U5S5H=nXUS-nSnUHnUS-[U-nM URU"U55 M? S
RU5n	U(aU	SU*n	U	$![a1 [U5H up�[UbM[SX--5Se ef=f![
Ra [S	U-5Sef=f)ziDecode the base85-encoded bytes-like object or ASCII string b

The result is returned as a bytes object.
N�rB�~r�rr�z#bad base85 character at position %dz+base85 overflow in hunk starting at byte %dr6)�_b85decrcr�r(r/r�r�r�rRr"rr�r�r�)
rWrTrZr��outr��chunkrr�jr�s
          r'rr�sq�����&�3�,���l�+�D�A��G�A�J�,�	 ��"�A��A��w�!�m�G�	�D�7�N��A�
�C��M�M�$��$�$�E�
�1�c�!�f�a�
 ���A��E�
����	����B�h����+���	,��J�J�u�S�z�"�!�$�X�X�c�]�F���	�'��"���M���	�!�%�(����1�:�%�$�%J�'(�u�&.�/�48�9�)�
�	���|�|�	,��J� �!�"�'+�
,�	,�s�C*�/D(�*"D%�D%�($EsU0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ.-:+=^!/*?&<>()[]{}@%$#s;_`|~rCc�>�[U5R[5$)zCEncode bytes-like object b in z85 format and return a bytes object.)rr1�_z85_encode_translationr%s r'rr�s���Q�<�!�!�"9�:�:r6c���[U5nUR[5n[U5$![a.n[	UR
SR
SS55SeSnAff=f)zfDecode the z85-encoded bytes-like object or ASCII string b

The result is returned as a bytes object.
r�base85�z85N)r(r1�_z85_decode_translationrr�args�replace)r&�es  r'rrsa��
	 ��"�A�	���+�,�A�G���|����G�������*�*�8�U�;�<�$�F��G�s�
-�
A%�)A � A%�LrKrIc��UR[5=n(a�[U5[:aiUR[[U5-
5=n(aAX#-
n[U5[:a*UR[[U5-
5=n(aMA[R"U5nURU5 UR[5=n(aM�gg)z1Encode a file; input and output are binary files.N)�read�
MAXBINSIZEr/r-r.�write)�input�outputr&�ns�lines     r'rrs����z�z�*�%�
%�!�
%��!�f�z�!�U�Z�Z�
�3�q�6�8I�-J�'J�r�'J�
�G�A��!�f�z�!�U�Z�Z�
�3�q�6�8I�-J�'J�r�'J��"�"�1�%�����T��	�z�z�*�%�
%�!�
%�
%r6c��UR5=n(aA[R"U5nURU5 UR5=n(aM@gg)z1Decode a file; input and output are binary files.N)�readliner-r9r�)r�r�r�r&s    r'rrsF���.�.�"�
"�$�
"�����%�����Q���.�.�"�
"�$�
"�
"r6c��[U5nURS;a3SUR<SURR<3n[U5eUR
S:wa0SUR
URR4-n[U5eg![a*nSURR-n[U5UeSnAff=f)Nz"expected bytes-like object, not %s)rZrW�Bz#expected single byte elements, not z from rGz(expected 1-D data, not %d-D data from %s)r r"r#r$r��ndim)r&�m�err�msgs    r'�_input_type_checkr�%s���&��q�M��	�x�x��&�+,�8�8�Q�[�[�5I�5I�K����n���v�v��{�9�+,�6�6�1�;�;�3G�3G�*H�I����n�����&�2�Q�[�[�5I�5I�I����n�#�%��&�s�B�
C�%C�Cc���[U5 /n[S[U5[5H3nXU[-nUR	[
R"U55 M5 SRU5$)zREncode a bytestring into a bytes object containing multiple lines
of base-64 data.rr6)r�rRr/r�r�r-r.r�)r&�piecesrTr�s    r'rr5s^���a��
�F�
�1�c�!�f�j�
)���a�*�n�%���
�
�h�)�)�%�0�1�*��8�8�F��r6c�D�[U5 [R"U5$)z8Decode a bytestring of base-64 data into a bytes object.)r�r-r9r%s r'rr@s���a�����q�!�!r6c���SSKnSSKnSURSS3nURURSSS5up4[nWH<upxUS:Xa[nUS	:Xa[nUS
:Xa[nUS:XdM1[
U5  g W(a>USS:wa5[USS
5n	U"X�R
R5 SSS5 gU"URRUR
R5 g!URaCnURUl[
U5 [
U5 URS5 SnAGN
SnAff=f!,(df   g=f)zSmall main programrNzusage: zx [-h|-d|-e|-u] [file|-]
        -h: print this help message and exit
        -d, -u: decode
        -e: encode (default)rG�hdeur+z-ez-dz-uz-h�-�rb)
�sys�getopt�argvr��stderr�stdout�print�exitrr�open�buffer�stdin)
r�r��usage�optsr�r��func�orV�fs
          r'�mainr�Gs"���������}�%�
 �E���]�]�3�8�8�A�B�<��8�
���D������9�V�d���9�V�d���9�V�d���9�e�E�l�F�	�
��Q��3��
�$�q�'�4�
 �A���J�J�%�%�&�!�
 �	
�S�Y�Y�
�
�s�z�z�0�0�1���<�<���Z�Z��
�
�c�
�
�e���������	��!�
 �s#�!C=�%E�=E�
8E�E�
E!�__main__rv)NF)FN)F)FFF)?�__doc__r�r�r-�__all__r2rOrr(rrrrr3r>r@rr�_B32_ENCODE_DOCSTRING�_B32_DECODE_DOCSTRING�_B32_DECODE_MAP01_DOCSTRINGrwr}rNrbr[rtr	r�r
rrr
rr�r�r�r�r�rrr�r�r�r�rr�_z85alphabet�_z85_b85_decode_diffr/r�r�rr�MAXLINESIZEr�rrr�rrr�r$�r6r'�<module>rs1��K�
�
����$�i� ��K�"�8�4��$�o�o�e�U�;��#�o�o�e�U�;��?�
�$��	����3��5��
��
��!�F+�\'�)�0�0�(�0�C�	��8�)�0�0�(�3N�1�P�	��*�,�3�3�[�3�I���4�-�3�3�[�?A�4�C���'�!�*
�	�
�
��	�
���0 %�a�U�%�'�R %�E�|�D�PE���	�
�
�
��4�'�RE�� ���/�/��'�'��7�S�!5�6�6�6��� �/�/�,��E��;�
G� ���1�n�a�
�
���
� �"�2�6�z���F�r6
© 2025 GrazzMean-Shell