403Webshell
Server IP : 51.79.230.26  /  Your IP : 216.73.217.128
Web Server : LiteSpeed
System : Linux sg2.exonhost.com 5.14.0-611.55.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue May 19 15:19:29 EDT 2026 x86_64
User : mukutpub ( 1151)
PHP Version : 8.2.33
Disable Function : eval, show_source, system, shell_exec, passthru, exec, popen, proc_open, allow_url_fopen, symlink, mail
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /opt/alt/python310/lib64/python3.10/http/__pycache__/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /opt/alt/python310/lib64/python3.10/http/__pycache__/cookies.cpython-310.pyc
o

�f�j�T�@sldZddlZddlZddlZgd�ZdjZdjZdjZGdd�de	�Z
ejejd	Z
e
d
Zdd�eed
��eeee��D�Ze�ed�ded�di�e�de�e
��jZe�d�Zdd�Zdd�Ze�d�jZdd�Zdd�Zgd�Z gd�Z!de e!fdd �Z"Gd!d"�d"e#�Z$d#Z%e%d$Z&e�d%e%d&e&d'ej'ej(B�Z)Gd(d)�d)e#�Z*Gd*d+�d+e*�Z+dS),a%

Here's a sample session to show how to use this module.
At the moment, this is the only documentation.

The Basics
----------

Importing is easy...

   >>> from http import cookies

Most of the time you start by creating a cookie.

   >>> C = cookies.SimpleCookie()

Once you've created your Cookie, you can add values just as if it were
a dictionary.

   >>> C = cookies.SimpleCookie()
   >>> C["fig"] = "newton"
   >>> C["sugar"] = "wafer"
   >>> C.output()
   'Set-Cookie: fig=newton\r\nSet-Cookie: sugar=wafer'

Notice that the printable representation of a Cookie is the
appropriate format for a Set-Cookie: header.  This is the
default behavior.  You can change the header and printed
attributes by using the .output() function

   >>> C = cookies.SimpleCookie()
   >>> C["rocky"] = "road"
   >>> C["rocky"]["path"] = "/cookie"
   >>> print(C.output(header="Cookie:"))
   Cookie: rocky=road; Path=/cookie
   >>> print(C.output(attrs=[], header="Cookie:"))
   Cookie: rocky=road

The load() method of a Cookie extracts cookies from a string.  In a
CGI script, you would use this method to extract the cookies from the
HTTP_COOKIE environment variable.

   >>> C = cookies.SimpleCookie()
   >>> C.load("chips=ahoy; vienna=finger")
   >>> C.output()
   'Set-Cookie: chips=ahoy\r\nSet-Cookie: vienna=finger'

The load() method is darn-tootin smart about identifying cookies
within a string.  Escaped quotation marks, nested semicolons, and other
such trickeries do not confuse it.

   >>> C = cookies.SimpleCookie()
   >>> C.load('keebler="E=everybody; L=\\"Loves\\"; fudge=;";')
   >>> print(C)
   Set-Cookie: keebler="E=everybody; L=\"Loves\"; fudge=;"

Each element of the Cookie also supports all of the RFC 2109
Cookie attributes.  Here's an example which sets the Path
attribute.

   >>> C = cookies.SimpleCookie()
   >>> C["oreo"] = "doublestuff"
   >>> C["oreo"]["path"] = "/"
   >>> print(C)
   Set-Cookie: oreo=doublestuff; Path=/

Each dictionary element has a 'value' attribute, which gives you
back the value associated with the key.

   >>> C = cookies.SimpleCookie()
   >>> C["twix"] = "none for you"
   >>> C["twix"].value
   'none for you'

The SimpleCookie expects that all values should be standard strings.
Just to be sure, SimpleCookie invokes the str() builtin to convert
the value to a string, when the values are set dictionary-style.

   >>> C = cookies.SimpleCookie()
   >>> C["number"] = 7
   >>> C["string"] = "seven"
   >>> C["number"].value
   '7'
   >>> C["string"].value
   'seven'
   >>> C.output()
   'Set-Cookie: number=7\r\nSet-Cookie: string=seven'

Finis.
�N)�CookieError�
BaseCookie�SimpleCookie�z; � c@seZdZdS)rN)�__name__�
__module__�__qualname__�r
r
�3/opt/alt/python310/lib64/python3.10/http/cookies.pyr�srz!#$%&'*+-.^_`|~:z
 ()/<=>?@[]{}cCsi|]}|d|�qS)z\%03or
)�.0�nr
r
r�
<dictcomp>�s�r��"z\"�\z\\z[%s]+z[\x00-\x1F\x7F]cGstdd�|D��S)zhDetects control characters within a value.
    Supports any type, as header values can be any type.
    css�|]
}t�t|��VqdS�N)�_control_character_re�search�str)r�vr
r
r�	<genexpr>�s�z)_has_control_character.<locals>.<genexpr>)�any)�valr
r
r�_has_control_character�srcCs&|dust|�r
|Sd|�t�dS)z�Quote a string for use in a cookie header.

    If the string does not need to be double-quoted, then just return the
    string.  Otherwise, surround the string in doublequotes and quote
    (with a \) special characters.
    Nr)�
_is_legal_key�	translate�_Translator�rr
r
r�_quote�srz\\(?:([0-3][0-7][0-7])|(.))cCs"|dr
tt|dd��S|dS)N���)�chr�int)�mr
r
r�_unquote_replace�sr&cCsJ|dus
t|�dkr|S|ddks|ddkr|S|dd�}tt|�S)Nr"rr���r )�len�_unquote_subr&rr
r
r�_unquote�s
r*)ZMonZTueZWedZThuZFriZSatZSun)
NZJanZFebZMarZAprZMayZJunZJulZAugZSepZOctZNovZDecc	CsRddlm}m}|�}|||�\	}}}}	}
}}}
}d|||||||	|
|fS)Nr)�gmtime�timez#%s, %02d %3s %4d %02d:%02d:%02d GMT)r,r+)ZfutureZweekdaynameZ	monthnamer+r,ZnowZyearZmonthZdayZhhZmmZssZwd�y�zr
r
r�_getdate�s�r/c
@s�eZdZdZdddddddd	d
d�	Zdd
hZdd�Zedd��Zedd��Z	edd��Z
dd�Zd4dd�Zdd�Z
ejZdd�Zdd �Zd!d"�Zd#d$�Zd%d&�Zd'd(�Zd)d*�Zd5d,d-�ZeZd.d/�Zd4d0d1�Zd4d2d3�Zeej�ZdS)6�MorselaCA class to hold ONE (key, value) pair.

    In a cookie, each such pair may have several attributes, so this class is
    used to keep the attributes associated with the appropriate key,value pair.
    This class also includes a coded_value attribute, which is used to hold
    the network representation of the value.
    �expiresZPath�CommentZDomainzMax-AgeZSecureZHttpOnlyZVersionZSameSite)	r1�path�commentZdomain�max-age�secure�httponly�versionZsamesiter6r7cCs0d|_|_|_|jD]	}t�||d�qdS)Nr)�_key�_value�_coded_value�	_reserved�dict�__setitem__)�self�keyr
r
r�__init__s
�zMorsel.__init__cC�|jSr)r9�r?r
r
rr@ �z
Morsel.keycCrBr)r:rCr
r
r�value$rDzMorsel.valuecCrBr)r;rCr
r
r�coded_value(rDzMorsel.coded_valuecCsP|��}||jvrtd|f��t||�rtd|�d|����t�|||�dS�N�Invalid attribute %r�.Control characters are not allowed in cookies r)�lowerr<rrr=r>)r?�K�Vr
r
rr>,s

zMorsel.__setitem__NcCsH|��}||jvrtd|f��t||�rtd||f��t�|||�S)NrHz3Control characters are not allowed in cookies %r %r)rJr<rrr=�
setdefault)r?r@rr
r
rrM4s

zMorsel.setdefaultcCs>t|t�stSt�||�o|j|jko|j|jko|j|jkSr)�
isinstancer0�NotImplementedr=�__eq__r:r9r;�r?Zmorselr
r
rrP<s

�
�
�z
Morsel.__eq__cCs$t�}t�||�|j�|j�|Sr)r0r=�update�__dict__rQr
r
r�copyFszMorsel.copycCspi}t|���D]'\}}|��}||jvrtd|f��t||�r+td|�d|����|||<qt�||�dSrG)r=�itemsrJr<rrrR)r?�values�datar@rr
r
rrRLs

��
z
Morsel.updatecCs|�|�|Sr)rR)r?rVr
r
r�__ior__Xs
zMorsel.__ior__cCs|��|jvSr)rJr<)r?rKr
r
r�
isReservedKey\szMorsel.isReservedKeycCsf|��|jvrtd|f��t|�std|f��t|||�r(td|||f��||_||_||_dS)Nz Attempt to set a reserved key %rzIllegal key %rz6Control characters are not allowed in cookies %r %r %r)rJr<rrrr9r:r;)r?r@rZ	coded_valr
r
r�set_s�
z
Morsel.setcCs|j|j|jd�S)N)r@rErF)r9r:r;rCr
r
r�__getstate__ms�zMorsel.__getstate__cCsT|d}|d}|d}t|||�rtd|�d|�d|����||_||_||_dS)Nr@rErFrIr)rrr9r:r;)r?�stater@rErFr
r
r�__setstate__ts���
zMorsel.__setstate__�Set-Cookie:cCsd||�|�fS)Nz%s %s)�OutputString)r?�attrs�headerr
r
r�outputsz
Morsel.outputcCsd|jj|��fS)N�<%s: %s>)�	__class__rr_rCr
r
r�__repr__�szMorsel.__repr__cCs>ddl}|�|�}t|�rtd��|jj|ddd�}d|fS)Nr�-Control characters are not allowed in cookiesrzutf-8)Zsafe�encodingz�
        <script type="text/javascript">
        <!-- begin hiding
        document.cookie = decodeURIComponent("%s");
        // end hiding -->
        </script>
        )Zurllib.parser_rr�parseZquote)r?r`ZurllibZ
output_stringZoutput_encodedr
r
r�	js_output�s
�zMorsel.js_outputcCs g}|j}|d|j|jf�|dur|j}t|���}|D]m\}}|dkr'q||vr,q|dkrCt|t�rC|d|j|t|�f�q|dkrXt|t�rX|d|j||f�q|dkrot|t	�ro|d|j|t
|�f�q||jvr�|r|t	|j|��q|d|j||f�qt|�S)N�%s=%srr1r5z%s=%dr4)
�appendr@rFr<�sortedrUrNr$r/rr�_flags�_semispacejoin)r?r`�resultrkrUr@rEr
r
rr_�s.
�zMorsel.OutputStringr)Nr^) rrr	�__doc__r<rmrA�propertyr@rErFr>rMrP�object�__ne__rTrRrXrYrZr[r]rb�__str__rerir_�classmethod�types�GenericAlias�__class_getitem__r
r
r
rr0�sJ�






!r0z,\w\d!#%&'~_`><@,:/\$\*\+\-\.\^\|\)\(\?\}\{\=z\[\]z�
    \s*                            # Optional whitespace at start of cookie
    (?P<key>                       # Start of group 'key'
    [a	]+?   # Any word of at least one letter
    )                              # End of group 'key'
    (                              # Optional group: there may not be a value.
    \s*=\s*                          # Equal Sign
    (?P<val>                         # Start of group 'val'
    "(?:[^\\"]|\\.)*"                  # Any doublequoted string
    |                                  # or
    \w{3},\s[\w\d\s-]{9,11}\s[\d:]{8}\sGMT  # Special case for "expires" attr
    |                                  # or
    [a-]*      # Any word or empty string
    )                                # End of group 'val'
    )?                             # End of optional value group
    \s*                            # Any number of spaces.
    (\s+|;|$)                      # Ending either at space, semicolon, or EOS.
    c@sneZdZdZdd�Zdd�Zddd�Zd	d
�Zdd�Zddd�Z	e	Z
dd�Zddd�Zdd�Z
efdd�ZdS)rz'A container class for a set of Morsels.cCs||fS)a
real_value, coded_value = value_decode(STRING)
        Called prior to setting a cookie's value from the network
        representation.  The VALUE is the value read from HTTP
        header.
        Override this function to modify the behavior of cookies.
        r
�r?rr
r
r�value_decode�szBaseCookie.value_decodecCst|�}||fS)z�real_value, coded_value = value_encode(VALUE)
        Called prior to setting a cookie's value from the dictionary
        representation.  The VALUE is the value being assigned.
        Override this function to modify the behavior of cookies.
        r�r?rZstrvalr
r
r�value_encode�szBaseCookie.value_encodeNcCs|r	|�|�dSdSr)�load)r?�inputr
r
rrA�s�zBaseCookie.__init__cCs.|�|t��}|�|||�t�|||�dS)z+Private method for setting a cookie's valueN)�getr0rZr=r>)r?r@Z
real_valuerF�Mr
r
rZ__set�szBaseCookie.__setcCs<t|t�rt�|||�dS|�|�\}}|�|||�dS)zDictionary style assignment.N)rNr0r=r>r|�_BaseCookie__set)r?r@rE�rval�cvalr
r
rr>�s
zBaseCookie.__setitem__r^�
c	CsNg}t|���}|D]\}}|�||�}t|�rtd��|�|�q
|�|�S)z"Return a string suitable for HTTP.rf)rlrUrbrrrk�join)	r?r`ra�seprorUr@rEZvalue_outputr
r
rrbs
zBaseCookie.outputcCsJg}t|���}|D]\}}|�d|t|j�f�q
d|jjt|�fS)Nrjrc)rlrUrk�reprrErdr�
_spacejoin)r?�lrUr@rEr
r
rres
zBaseCookie.__repr__cCs6g}t|���}|D]\}}|�|�|��q
t|�S)z(Return a string suitable for JavaScript.)rlrUrkri�	_nulljoin)r?r`rorUr@rEr
r
rris
zBaseCookie.js_outputcCs6t|t�r|�|�dS|��D]\}}|||<qdS)z�Load cookies from a string (presumably HTTP_COOKIE) or
        from a dictionary.  Loading cookies from a dictionary 'd'
        is equivalent to calling:
            map(Cookie.__setitem__, d.keys(), d.values())
        N)rNr�_BaseCookie__parse_stringrU)r?Zrawdatar@rEr
r
rr}"s

�
zBaseCookie.loadcCs�d}t|�}g}d}d}d}d|kr|kr�nnz|�||�}	|	s#nq|	�d�|	�d�}
}|	�d�}|
ddkrI|s<q|�||
dd�|f�n@|
��tjvru|sTdS|durj|
��tjvrh|�||
df�n!dS|�||
t	|�f�n|dur�|�||
|�
|�f�d}ndSd|kr�|ksnd}|D])\}
}
}|
|kr�|dus�J�|||
<q�|
|ks�J�|\}}|�|
||�||
}q�dS)	NrFr r"r@r�$T)r(�match�group�endrkrJr0r<rmr*rzr�)r?rZpatt�ir
Zparsed_itemsZmorsel_seenZTYPE_ATTRIBUTEZ
TYPE_KEYVALUEr�r@rEr��tpr�r�r
r
rZ__parse_string0sN
�%

�zBaseCookie.__parse_stringr)Nr^r�)rrr	rprzr|rAr�r>rbrtrerir}�_CookiePatternr�r
r
r
rr�s	
	
	
rc@s eZdZdZdd�Zdd�ZdS)rz�
    SimpleCookie supports strings as cookie values.  When setting
    the value using the dictionary assignment notation, SimpleCookie
    calls the builtin str() to convert the value to a string.  Values
    received from HTTP are kept as strings.
    cCst|�|fSr)r*ryr
r
rrztszSimpleCookie.value_decodecCst|�}|t|�fSr)rrr{r
r
rr|wszSimpleCookie.value_encodeN)rrr	rprzr|r
r
r
rrmsr),rp�re�stringrv�__all__r�r�rnr��	ExceptionrZ
ascii_lettersZdigitsZ_LegalCharsZ_UnescapedCharsrZ�range�map�ordrrR�compile�escape�	fullmatchrrrr�subr)r&r*Z_weekdaynameZ
_monthnamer/r=r0Z_LegalKeyCharsZ_LegalValueChars�ASCII�VERBOSEr�rrr
r
r
r�<module>s\&]��

Q����
�

Youez - 2016 - github.com/yon3zu
LinuXploit