404

[ Avaa Bypassed ]




Upload:

Command:

elspacio@3.133.156.254: ~ $
�
i fe��@sRdZdZddlmZmZmZddlmZddlZddl	Z	ddl
Zddlm
Z
ddlmZddlmZddlZddlZddlZd	d
ddd
dddddddddgZdadadd�Zdd�Zdd�Zdd�Zeadade	jddd d�Zddd!d�Z ddd"d
�Z!d#d�Z"d$d%�Z#d&d�Z$Gd'd	�d	�Z%Gd(d
�d
�Z&e	jd)d*�Z'ddddd+d�Z(e	jd,d�Z)d-d�Z*d.d�Z+d/d�Z,d0d�Z-dd1d�Z.d2d3�Z/e0d4krNe'�ndS)5z�Support module for CGI (Common Gateway Interface) scripts.

This module defines a number of utilities for use by CGI scripts
written in Python.
z2.6�)�StringIO�BytesIO�
TextIOWrapper)�MappingN)�
FeedParser)�Message)�warn�MiniFieldStorage�FieldStorage�parse�parse_qs�	parse_qsl�parse_multipart�parse_header�print_exception�
print_environ�
print_form�print_directory�print_arguments�print_environ_usage�escape�cGs[tr8tr8yttd�aWq8tk
r4Yq8XntsGtantat|�dS)a�Write a log message, if there is a log file.

    Even though this function is called initlog(), you should always
    use log(); log is a variable that is set either to initlog
    (initially), to dolog (once the log file has been opened), or to
    nolog (when logging is disabled).

    The first argument is a format string; the remaining arguments (if
    any) are arguments to the % operator, so e.g.
        log("%s: %s", "a", "b")
    will write "a: b" to the log file, followed by a newline.

    If the global logfp is not None, it should be a file object to
    which log data is written.

    If the global logfp is None, the global logfile may be a string
    giving a filename to open, in append mode.  This file should be
    world writable!!!  If the file can't be opened, logging is
    silently disabled (since there is no safe place where we could
    send an error message).

    �aN)�logfile�logfp�open�OSError�nolog�log�dolog)�allargs�r!�(/opt/alt/python34/lib64/python3.4/cgi.py�initlog:s

	r#cGstj||d�dS)z=Write a log message to the log file.  See initlog() for docs.�
N)r�write)Zfmt�argsr!r!r"r]srcGsdS)z9Dummy function, assigned to log when logging is disabled.Nr!)r r!r!r"rasrcCs)datrtj�dantadS)zClose the log file.rN)rr�closer#rr!r!r!r"�closeloges

	r(c	Cs�|dkrtj}nt|d�r3|j}nd}t|t�rT|j}nd|krmd|d<n|ddkr�t|d�\}}|dkr�t||�S|d	krt	|d
�}t
r�|t
kr�td��n|j|�j
|�}nd}d
|kr:|r)|d}n||d
}n:tjdd�rt|r`|d}n|tjd}n||d
<nLd
|kr�|d
}n3tjdd�r�tjd}nd}||d
<tjj|||d|�S)a'Parse a query in the environment or from a file (default stdin)

        Arguments, all optional:

        fp              : file pointer; default: sys.stdin.buffer

        environ         : environment dictionary; default: os.environ

        keep_blank_values: flag indicating whether blank values in
            percent-encoded forms should be treated as blank strings.
            A true value indicates that blanks should be retained as
            blank strings.  The default false value indicates that
            blank values are to be ignored and treated as if they were
            not included.

        strict_parsing: flag indicating what to do with parsing errors.
            If false (the default), errors are silently ignored.
            If true, errors raise a ValueError exception.
    N�encodingzlatin-1�REQUEST_METHOD�GET�POST�CONTENT_TYPEzmultipart/form-dataz!application/x-www-form-urlencoded�CONTENT_LENGTHzMaximum content length exceededr�QUERY_STRING�&�)�sys�stdin�hasattrr)�
isinstancer�bufferrr�int�maxlen�
ValueError�read�decode�argv�urllibrr)	�fp�environ�keep_blank_values�strict_parsingr)�ctype�pdict�clength�qsr!r!r"rxsH






cCs&tdtd�tjj|||�S)z)Parse a query given as a string argument.z=cgi.parse_qs is deprecated, use urllib.parse.parse_qs instead�)r�DeprecationWarningr=rr)rEr@rAr!r!r"r�s
cCs&tdtd�tjj|||�S)z)Parse a query given as a string argument.z?cgi.parse_qsl is deprecated, use urllib.parse.parse_qsl insteadrF)rrGr=rr
)rEr@rAr!r!r"r
�s
cCs�ddl}d}d|kr+|d}nt|�sMtd|f��nd|}d|d}i}d}xE||kr�d}d}	|r)|jj|�}
|
jd�}|r�yt|�}Wq�tk
r�Yq�Xn|dkr tr|tkrtd	��n|j|�}	q)d}	ng}xa|j	�}
|
sN|}Pn|
j
d�r�|
j�}|||fkr�Pq�n|j|
�q2W|	dkr�qtn|dkr2|r2|d}
|
dd�dkr�|
dd�}
n)|
dd�dkr|
dd�}
n|
|d<dj
|�}	q2n|
d
}
|
sHqtnt|
�\}}|dkrlqtnd|krt|d}nqt||kr�||j|	�qt|	g||<qtW|S)a�Parse multipart input.

    Arguments:
    fp   : input file
    pdict: dictionary containing other parameters of content-type header

    Returns a dictionary just like parse_qs(): keys are the field names, each
    value is a list of values for that field.  This is easy to use but not
    much good if you are expecting megabytes to be uploaded -- in that case,
    use the FieldStorage class instead which is much more flexible.  Note
    that content-type is the raw, unparsed contents of the content-type
    header.

    XXX This does not parse nested multipart parts -- use FieldStorage for
    that.

    XXX This should really be subsumed by FieldStorage altogether -- no
    point in having two implementations of the same parsing algorithm.
    Also, FieldStorage protects itself better against certain DoS attacks
    by limiting the size of the data read in one chunk.  The API here
    does not support that kind of protection.  This also affects parse()
    since it can call parse_multipart().

    rN��boundaryz&Invalid boundary in multipart form: %rs--r1zcontent-lengthzMaximum content length exceededrFs
s
zcontent-dispositionz	form-data�name���rK���rLrKrKrK)Zhttp.client�valid_boundaryr9ZclientZ
parse_headers�getr7r8r:�readline�
startswith�rstrip�append�joinr)r>rCZhttprIZnextpartZlastpartZpartdictZ
terminator�bytes�data�headersrD�lines�line�keyZparamsrJr!r!r"r�s|


	



ccs�x�|dd�dkr�|dd�}|jd�}xR|dkr�|jdd|�|jdd|�dr�|jd|d�}q;W|dkr�t|�}n|d|�}|j�V||d�}qWdS)Nr1�;r�"z\"rF)�find�count�len�strip)�s�end�fr!r!r"�_parseparam-s;rccCstd|�}|j�}i}x�|D]�}|jd�}|dkr)|d|�j�j�}||dd�j�}t|�dkr�|d|dko�dknr�|dd�}|jdd	�jd
d�}n|||<q)q)W||fS)
zfParse a Content-type like header.

    Return the main content-type and a dictionary of options.

    rZ�=rNr1rFr[z\\�\z\"rKrK)rc�__next__r\r_�lowerr^�replace)rX�partsrYrC�p�irJ�valuer!r!r"r9s
6!c@s^eZdZdZdZdZdZdZiZdZ	iZ
iZdd�Zdd�Z
dS)r	z=Like FieldStorage, for use when no file uploads are possible.NcCs||_||_dS)z&Constructor from field name and value.N)rJrl)�selfrJrlr!r!r"�__init___s	zMiniFieldStorage.__init__cCsd|j|jfS)z Return printable representation.zMiniFieldStorage(%r, %r))rJrl)rmr!r!r"�__repr__eszMiniFieldStorage.__repr__)�__name__�
__module__�__qualname__�__doc__�filename�list�type�file�type_options�disposition�disposition_optionsrVrnror!r!r!r"r	Qsc@sZeZdZdZdddejddddddd�	Zd	d
�Zdd�Zd
d�Z	dd�Z
dd�Zddd�Zddd�Z
dd�Zdd�Zdd�Zdd�Zdd �Zd!d"�ZdZd#d$�Zd%d&�Zd7Zd)d*�Zd+d,�Zd-d.�Zd/d0�Zd1d2�Zd3d4�Zd5d6�ZdS)8r
a�Store a sequence of fields, reading multipart/form-data.

    This class provides naming, typing, files stored on disk, and
    more.  At the top level, it is accessible like a dictionary, whose
    keys are the field names.  (Note: None can occur as a field name.)
    The items are either a Python list (if there's multiple values) or
    another FieldStorage or MiniFieldStorage object.  If it's a single
    object, it has the following attributes:

    name: the field name, if specified; otherwise None

    filename: the filename, if specified; otherwise None; this is the
        client side filename, *not* the file name on which it is
        stored (that's a temporary file you don't deal with)

    value: the value as a *string*; for file uploads, this
        transparently reads the file every time you request the value
        and returns *bytes*

    file: the file(-like) object from which you can read the data *as
        bytes* ; None if the data is stored a simple string

    type: the content-type, or None if not specified

    type_options: dictionary of options specified on the content-type
        line

    disposition: content-disposition, or None if not specified

    disposition_options: dictionary of corresponding options

    headers: a dictionary(-like) object (sometimes email.message.Message or a
        subclass thereof) containing *all* headers

    The class is subclassable, mostly for the purpose of overriding
    the make_file() method, which is called internally to come up with
    a file open for reading and writing.  This makes it possible to
    override the default choice of storing all files in a temporary
    directory and unlinking them as soon as they have been opened.

    NrHrzutf-8rhc
Cs�d}
||_||_d|kr7|dj�}
nd|_|
dksX|
dkr�d|krq|d}n)tjdd�r�tjd}nd}|jtj�d�}t	|�}|dkr�id	d
6}q�n|dkrai}|
dkrd	|d
<nd|kr%|d|d
<nd|krA|d|_nd
|kr�|d
|d<q�n$t
|ttf�s�t
d��n||_|dkr�tjj|_nTt
|t�r�|j|_n6t|d�o�t|d�s�t
d��n||_||_|	|_t
|t�s=t
dt|�j��n||_d|_||_di}}
d|jkr�t|jd�\}}
n||_|
|_d|_d|
kr�|
d|_nd|_ d|
kr�|
d|_ n|j dk	|_!d
|jkr)t|jd
�\}}
n2|js>|
dkrNdi}}
n
d	i}}
||_|
|_"d|
kr�|
dj|j�|_#n	d|_#d}d|jkryt$|jd�}Wnt%k
r�YnXt&r|t&krt%d��qn||_'|jdkr-|r-||_nd|_(|_)d|_*|d	kr_|j+�n6|dd�dkr�|j,|||�n
|j-�dS)a�Constructor.  Read multipart/* until last part.

        Arguments, all optional:

        fp              : file pointer; default: sys.stdin.buffer
            (not used when the request method is GET)
            Can be :
            1. a TextIOWrapper object
            2. an object whose read() and readline() methods return bytes

        headers         : header dictionary-like object; default:
            taken from environ as per CGI spec

        outerboundary   : terminating multipart boundary
            (for internal use only)

        environ         : environment dictionary; default: os.environ

        keep_blank_values: flag indicating whether blank values in
            percent-encoded forms should be treated as blank strings.
            A true value indicates that blanks should be retained as
            blank strings.  The default false value indicates that
            blank values are to be ignored and treated as if they were
            not included.

        strict_parsing: flag indicating what to do with parsing errors.
            If false (the default), errors are silently ignored.
            If true, errors raise a ValueError exception.

        limit : used internally to read parts of multipart/form-data forms,
            to exit from the reading loop when reached. It is the difference
            between the form content-length and the number of bytes already
            read

        encoding, errors : the encoding and error handler used to decode the
            binary stream to strings. Must be the same as the charset defined
            for the page sending the form (content-type : meta http-equiv or
            header)

        r+r*NZHEADr/r1r�surrogateescapez!application/x-www-form-urlencodedzcontent-typer,r-r.zcontent-lengthz?headers must be mapping or an instance of email.message.Messager:rOzfp must be file pointerz#outerboundary must be bytes, not %srzcontent-dispositionrJrtz
text/plainrIrHzMaximum content length exceeded�
z
multipart/rK).r@rA�upper�
qs_on_postr2r<�encode�locale�getpreferredencodingrr5rr�	TypeErrorrVr3r6r>rr4r)�errorsrTrvrp�
outerboundary�
bytes_read�limitrryrzrJrt�_binary_filerx�
innerboundaryr7r9r8�lengthrurw�done�read_urlencoded�
read_multi�read_single)rmr>rVr�r?r@rAr�r)r��methodrEZcdisprCrBZclenr!r!r"rn�s�+			

							
				
			
		
zFieldStorage.__init__cCs*y|jj�Wntk
r%YnXdS)N)rwr'�AttributeError)rmr!r!r"�__del__3s
zFieldStorage.__del__cCsd|j|j|jfS)z"Return a printable representation.zFieldStorage(%r, %r, %r))rJrtrl)rmr!r!r"ro9szFieldStorage.__repr__cCst|j��S)N)�iter�keys)rmr!r!r"�__iter__>szFieldStorage.__iter__cCs{|dkrt|��n|jrV|jjd�|jj�}|jjd�n!|jdk	rq|j}nd}|S)Nrlr)r�rw�seekr:ru)rmrJrlr!r!r"�__getattr__As	zFieldStorage.__getattr__cCs�|jdkrtd��ng}x0|jD]%}|j|kr.|j|�q.q.W|slt|��nt|�dkr�|dS|SdS)zDictionary style indexing.Nz
not indexabler1r)rur�rJrR�KeyErrorr^)rmrY�found�itemr!r!r"�__getitem__NszFieldStorage.__getitem__cCsH||kr@||}t|t�r6dd�|D�S|jSn|SdS)z8Dictionary style get() method, including 'value' lookup.cSsg|]}|j�qSr!)rl)�.0�xr!r!r"�
<listcomp>as	z)FieldStorage.getvalue.<locals>.<listcomp>N)r5rurl)rmrY�defaultrlr!r!r"�getvalue\s

zFieldStorage.getvaluecCsB||kr:||}t|t�r0|djS|jSn|SdS)z! Return the first value received.rN)r5rurl)rmrYr�rlr!r!r"�getfirstgs

zFieldStorage.getfirstcCsK||krC||}t|t�r6dd�|D�S|jgSngSdS)z  Return list of received values.cSsg|]}|j�qSr!)rl)r�r�r!r!r"r�ws	z(FieldStorage.getlist.<locals>.<listcomp>N)r5rurl)rmrYrlr!r!r"�getlistrs

zFieldStorage.getlistcCs>|jdkrtd��nttdd�|jD���S)zDictionary style keys() method.Nz
not indexablecss|]}|jVqdS)N)rJ)r�r�r!r!r"�	<genexpr>�sz$FieldStorage.keys.<locals>.<genexpr>)rur��set)rmr!r!r"r�}szFieldStorage.keyscs>|jdkrtd��nt�fdd�|jD��S)z%Dictionary style __contains__ method.Nz
not indexablec3s|]}|j�kVqdS)N)rJ)r�r�)rYr!r"r��sz,FieldStorage.__contains__.<locals>.<genexpr>)rur��any)rmrYr!)rYr"�__contains__�szFieldStorage.__contains__cCst|j��S)z Dictionary style len(x) support.)r^r�)rmr!r!r"�__len__�szFieldStorage.__len__cCs+|jdkrtd��nt|j�S)NzCannot be converted to bool.)rur��bool)rmr!r!r"�__bool__�szFieldStorage.__bool__cCs�|jj|j�}t|t�sItd|jt|�jf��n|j|j	|j
�}|jr~|d|j7}ng|_t
jj||j|jd|j	d|j
�}x-|D]%\}}|jjt||��q�W|j�dS)z+Internal: read data in query string format.z%s should return bytes, got %sr0r)r�N)r>r:r�r5rTr9rvrpr;r)r�r~rur=rr
r@rArRr	�
skip_lines)rmrE�queryrYrlr!r!r"r��s			zFieldStorage.read_urlencodedc
Cs�|j}t|�s+td|f��ng|_|jr�tjj|j|j|j	d|j
d|j�}x0|D]%\}}|jjt
||��qwWn|jp�|j}|jj�}	t|	t�s�td|jt|	�jf��n|jt|	�7_xG|	j�d|jkrV|	rV|jj�}	|jt|	�7_qWx+t�}
d}x-|jj�}||7}|j�slPqlqlW|s�Pn|jt|�7_|
j|j|j
|j��|
j�}
d|
kr�|
d=n||j|
|||||j|j|j
|j�	}|j|j7_|jj|�|js}|j|jkoxdknrZPqZqZW|j �d	S)
z/Internal: read a part that is itself multipart.z&Invalid boundary in multipart form: %rr)r�z%s should return bytes, got %ss--rHzcontent-lengthrN)!r�rMr9rur~r=rr
r@rAr)r�rRr	�FieldStorageClass�	__class__r>rOr5rTrvrpr�r^r_rZfeedr;r'r�r�r�r�)rmr?r@rAZibr�rYrl�klassZ
first_line�parserZhdr_textrUrV�partr!r!r"r��sV				 	

+zFieldStorage.read_multicCsD|jdkr&|j�|j�n
|j�|jjd�dS)zInternal: read an atomic part.rN)r��read_binaryr��
read_linesrwr�)rmr!r!r"r��s



zFieldStorage.read_single�icCs�|j�|_|j}|dkr�x�|dkr�|jjt||j��}t|t�s�t	d|jt
|�jf��n|jt
|�7_|s�d|_Pn|jj|�|t
|�}q'WndS)zInternal: read binary data.rz%s should return bytes, got %sr1NrK)�	make_filerwr�r>r:�min�bufsizer5rTr9rvrpr�r^r�r%)rmZtodorUr!r!r"r��s		zFieldStorage.read_binarycCsV|jrt�|_|_nt�|_|_|jrH|j�n
|j�dS)z0Internal: read lines until EOF or outerboundary.N)r�rrw�_FieldStorage__filerr��read_lines_to_outerboundary�read_lines_to_eof)rmr!r!r"r��s		
zFieldStorage.read_linescCs�|jdk	rk|jj�t|�dkrk|j�|_|jj�}|jj|�d|_qkn|jr�|jj|�n"|jj|j|j	|j
��dS)z line is always bytes, not stringNi�)r��tellr^r�rwr�r%r�r;r)r�)rmrXrUr!r!r"Z__writes	zFieldStorage.__writecCsRxK|jjd�}|jt|�7_|s=d|_Pn|j|�qWdS)zInternal: read lines until EOF.r1�NirK)r>rOr�r^r��_FieldStorage__write)rmrXr!r!r"r�s	zFieldStorage.read_lines_to_eofc	Cs�d|j}|d}d}d}d}xz||jkr?Pn|jjd
�}|jt|�7_|t|�7}|s�d|_Pn|dkr�||}d}n|jd�r�|r�|j�}||kr�Pn||kr�d|_Pq�n|}|j	d�r)d}|d	d�}d}nh|j	d�rWd}|d	d�}d}n:|j	d�r�d}|d	d�}d}nd}d}|j
||�q,Wd	S)z�Internal: read lines until outerboundary.
        Data is read as bytes: boundaries and line ends must be converted
        to bytes for comparisons.
        s--rHTrr1r�s
s
NrFs
FirKrLrKrK)r�r�r>rOr�r^r�rPrQ�endswithr�)	rm�
next_boundary�
last_boundaryZdelim�last_line_lfendZ_readrX�strippedlineZodelimr!r!r"r�sP

	
					z(FieldStorage.read_lines_to_outerboundarycCs�|js|jrdSd|j}|d}d}x�|jjd�}|jt|�7_|sqd|_Pn|jd�r�|r�|j�}||kr�Pn||kr�d|_Pq�n|jd�}q7WdS)	z5Internal: skip lines until outer boundary if defined.Ns--Tr1r�s
irK)r�r�r>rOr�r^r�r_)rmr�r�r�rXr�r!r!r"r�Ls&

		zFieldStorage.skip_linescCs6|jrtjd�Stjdd|jdd�SdS)a�Overridable: return a readable & writable file.

        The file will be used as follows:
        - data is written to it
        - seek(0)
        - data is read from it

        The file is opened in binary mode for files, in text mode
        for other fields

        This version opens a temporary file for reading and writing,
        and immediately deletes (unlinks) it.  The trick (on Unix!) is
        that the file can still be used, but it can't be opened by
        another process, and it will automatically be deleted when it
        is closed or when the current process terminates.

        If you want a more permanent file, you derive a class which
        overrides this method.  If you want a visible temporary file
        that is nevertheless automatically deleted when the script
        terminates, try defining a __del__ method in a derived class
        which unlinks the temporary files you have created.

        zwb+zw+r)�newliner$N)r��tempfileZ
TemporaryFiler))rmr!r!r"r�bs	
zFieldStorage.make_filei )rprqrrrs�osr?rnr�ror�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r�r!r!r!r"r
js8*	�
6	
1cCs�td�t�tjt_ybt�}t�t�t|�t|�t	�dd�}|dd�}td�|�Wnt
�YnXtd�day/t�}t�t�t|�t|�Wnt
�YnXd	S)
z�Robust test CGI script, usable as main program.

    Write minimal HTTP headers and dump all information provided to
    the script in HTML form.

    zContent-type: text/htmlcSstd�dS)Nz,testing print_exception() -- <I>italics?</I>)�execr!r!r!r"rb�sztest.<locals>.fcSs|�dS)Nr!)rbr!r!r"�g�sztest.<locals>.gz9<H3>What follows is a test, not an actual exception:</H3>z*<H1>Second try with a small maxlen...</H1>�2N)�printr2�stdout�stderrr
rrrrrrr8)r?�formrbr�r!r!r"�test�s4
	



	
r�cCs�|dkr$tj�\}}}nddl}t�td�|j||�|j||�}tdtjdj|dd���tj|d�f�~dS)Nrz+<H3>Traceback (most recent call last):</H3>z<PRE>%s<B>%s</B></PRE>rr1rKrK)	r2�exc_info�	tracebackr��	format_tb�format_exception_only�htmlrrS)rvrl�tbr�r�rur!r!r"r�s
cCs|t|j��}t�td�td�x7|D]/}tdtj|�dtj||��q4Wtd�t�dS)z#Dump the shell environment as HTML.z<H3>Shell Environment:</H3>z<DL>z<DT>z<DD>z</DL>N)�sortedr�r�r�r)r?r�rYr!r!r"r�s


-
cCs�t|j��}t�td�|s6td�ntd�x}|D]u}tdtj|�ddd�||}tdtjtt|���d	�td
tjt|���qGWtd�t�dS)
z$Dump the contents of a form as HTML.z<H3>Form Contents:</H3>z<P>No form fields.z<DL>z<DT>�:ra� z<i>z</i>z<DD>z</DL>N)r�r�r�r�r�reprrv)r�r�rYrlr!r!r"r�s



!
'!
cCs�t�td�ytj�}WnAtk
rd}z!tdtjt|���WYdd}~XnXttj|��t�dS)z#Dump the current directory as HTML.z#<H3>Current Working Directory:</H3>zOSError:N)r�r��getcwdrr�r�str)�pwd�msgr!r!r"r�s
/cCs0t�td�t�ttj�t�dS)Nz <H3>Command Line Arguments:</H3>)r�r2r<r!r!r!r"r�s


cCstd�dS)z9Dump a list of environment variables used by CGI as HTML.a�
<H3>These environment variables could have been set:</H3>
<UL>
<LI>AUTH_TYPE
<LI>CONTENT_LENGTH
<LI>CONTENT_TYPE
<LI>DATE_GMT
<LI>DATE_LOCAL
<LI>DOCUMENT_NAME
<LI>DOCUMENT_ROOT
<LI>DOCUMENT_URI
<LI>GATEWAY_INTERFACE
<LI>LAST_MODIFIED
<LI>PATH
<LI>PATH_INFO
<LI>PATH_TRANSLATED
<LI>QUERY_STRING
<LI>REMOTE_ADDR
<LI>REMOTE_HOST
<LI>REMOTE_IDENT
<LI>REMOTE_USER
<LI>REQUEST_METHOD
<LI>SCRIPT_NAME
<LI>SERVER_NAME
<LI>SERVER_PORT
<LI>SERVER_PROTOCOL
<LI>SERVER_ROOT
<LI>SERVER_SOFTWARE
</UL>
In addition, HTTP headers sent by the server may be passed in the
environment as well.  Here are some common variable names:
<UL>
<LI>HTTP_ACCEPT
<LI>HTTP_CONNECTION
<LI>HTTP_HOST
<LI>HTTP_PRAGMA
<LI>HTTP_REFERER
<LI>HTTP_USER_AGENT
</UL>
N)r�r!r!r!r"r�s'cCshtdtdd�|jdd�}|jdd�}|jdd	�}|rd|jd
d�}n|S)zDeprecated API.z1cgi.escape is deprecated, use html.escape instead�
stacklevelrFr0z&amp;�<z&lt;�>z&gt;r[z&quot;)rrGrh)r`Zquoter!r!r"rs
cCs:ddl}t|t�r$d}nd}|j||�S)Nrs^[ -~]{0,200}[!-~]$z^[ -~]{0,200}[!-~]$)�rer5rT�match)r`r�Z_vb_patternr!r!r"rM"s
	rM�__main__)1rs�__version__�iorrr�collectionsrr2r�Zurllib.parser=Zemail.parserrZ
email.messager�warningsrr�r�r��__all__rrr#rrr(rr8r?rrr
rrcrr	r
r�rrrrrrrrMrpr!r!r!r"�<module>s\		#	Ed��'/

Filemanager

Name Type Size Permission Actions
__future__.cpython-34.pyc File 4.07 KB 0644
__future__.cpython-34.pyo File 4.07 KB 0644
__phello__.foo.cpython-34.pyc File 134 B 0644
__phello__.foo.cpython-34.pyo File 134 B 0644
_bootlocale.cpython-34.pyc File 1.02 KB 0644
_bootlocale.cpython-34.pyo File 1016 B 0644
_collections_abc.cpython-34.pyc File 23.39 KB 0644
_collections_abc.cpython-34.pyo File 23.39 KB 0644
_compat_pickle.cpython-34.pyc File 7.33 KB 0644
_compat_pickle.cpython-34.pyo File 7.25 KB 0644
_dummy_thread.cpython-34.pyc File 4.71 KB 0644
_dummy_thread.cpython-34.pyo File 4.71 KB 0644
_markupbase.cpython-34.pyc File 8.72 KB 0644
_markupbase.cpython-34.pyo File 8.54 KB 0644
_osx_support.cpython-34.pyc File 10.38 KB 0644
_osx_support.cpython-34.pyo File 10.38 KB 0644
_pyio.cpython-34.pyc File 63.41 KB 0644
_pyio.cpython-34.pyo File 63.39 KB 0644
_sitebuiltins.cpython-34.pyc File 3.59 KB 0644
_sitebuiltins.cpython-34.pyo File 3.59 KB 0644
_strptime.cpython-34.pyc File 15.41 KB 0644
_strptime.cpython-34.pyo File 15.41 KB 0644
_sysconfigdata.cpython-34.pyc File 24.49 KB 0644
_sysconfigdata.cpython-34.pyo File 24.49 KB 0644
_threading_local.cpython-34.pyc File 6.78 KB 0644
_threading_local.cpython-34.pyo File 6.78 KB 0644
_weakrefset.cpython-34.pyc File 8.27 KB 0644
_weakrefset.cpython-34.pyo File 8.27 KB 0644
abc.cpython-34.pyc File 7.69 KB 0644
abc.cpython-34.pyo File 7.64 KB 0644
aifc.cpython-34.pyc File 27.26 KB 0644
aifc.cpython-34.pyo File 27.26 KB 0644
antigravity.cpython-34.pyc File 847 B 0644
antigravity.cpython-34.pyo File 847 B 0644
argparse.cpython-34.pyc File 64.33 KB 0644
argparse.cpython-34.pyo File 64.17 KB 0644
ast.cpython-34.pyc File 12.07 KB 0644
ast.cpython-34.pyo File 12.07 KB 0644
asynchat.cpython-34.pyc File 8.16 KB 0644
asynchat.cpython-34.pyo File 8.16 KB 0644
asyncore.cpython-34.pyc File 17.54 KB 0644
asyncore.cpython-34.pyo File 17.54 KB 0644
base64.cpython-34.pyc File 17.87 KB 0644
base64.cpython-34.pyo File 17.67 KB 0644
bdb.cpython-34.pyc File 18.26 KB 0644
bdb.cpython-34.pyo File 18.26 KB 0644
binhex.cpython-34.pyc File 13.22 KB 0644
binhex.cpython-34.pyo File 13.22 KB 0644
bisect.cpython-34.pyc File 2.79 KB 0644
bisect.cpython-34.pyo File 2.79 KB 0644
bz2.cpython-34.pyc File 14.8 KB 0644
bz2.cpython-34.pyo File 14.8 KB 0644
cProfile.cpython-34.pyc File 4.51 KB 0644
cProfile.cpython-34.pyo File 4.51 KB 0644
calendar.cpython-34.pyc File 26.92 KB 0644
calendar.cpython-34.pyo File 26.92 KB 0644
cgi.cpython-34.pyc File 29.13 KB 0644
cgi.cpython-34.pyo File 29.13 KB 0644
cgitb.cpython-34.pyc File 10.8 KB 0644
cgitb.cpython-34.pyo File 10.8 KB 0644
chunk.cpython-34.pyc File 5.15 KB 0644
chunk.cpython-34.pyo File 5.15 KB 0644
cmd.cpython-34.pyc File 13.14 KB 0644
cmd.cpython-34.pyo File 13.14 KB 0644
code.cpython-34.pyc File 9.47 KB 0644
code.cpython-34.pyo File 9.47 KB 0644
codecs.cpython-34.pyc File 34.31 KB 0644
codecs.cpython-34.pyo File 34.31 KB 0644
codeop.cpython-34.pyc File 6.31 KB 0644
codeop.cpython-34.pyo File 6.31 KB 0644
colorsys.cpython-34.pyc File 3.57 KB 0644
colorsys.cpython-34.pyo File 3.57 KB 0644
compileall.cpython-34.pyc File 7.21 KB 0644
compileall.cpython-34.pyo File 7.21 KB 0644
configparser.cpython-34.pyc File 43.83 KB 0644
configparser.cpython-34.pyo File 43.83 KB 0644
contextlib.cpython-34.pyc File 10.13 KB 0644
contextlib.cpython-34.pyo File 10.13 KB 0644
copy.cpython-34.pyc File 7.87 KB 0644
copy.cpython-34.pyo File 7.79 KB 0644
copyreg.cpython-34.pyc File 4.5 KB 0644
copyreg.cpython-34.pyo File 4.46 KB 0644
crypt.cpython-34.pyc File 2.38 KB 0644
crypt.cpython-34.pyo File 2.38 KB 0644
csv.cpython-34.pyc File 12.69 KB 0644
csv.cpython-34.pyo File 12.69 KB 0644
datetime.cpython-34.pyc File 54.95 KB 0644
datetime.cpython-34.pyo File 53.02 KB 0644
decimal.cpython-34.pyc File 168.48 KB 0644
decimal.cpython-34.pyo File 168.48 KB 0644
difflib.cpython-34.pyc File 59.1 KB 0644
difflib.cpython-34.pyo File 59.05 KB 0644
dis.cpython-34.pyc File 14.25 KB 0644
dis.cpython-34.pyo File 14.25 KB 0644
doctest.cpython-34.pyc File 78.23 KB 0644
doctest.cpython-34.pyo File 77.97 KB 0644
dummy_threading.cpython-34.pyc File 1.19 KB 0644
dummy_threading.cpython-34.pyo File 1.19 KB 0644
enum.cpython-34.pyc File 15.96 KB 0644
enum.cpython-34.pyo File 15.96 KB 0644
filecmp.cpython-34.pyc File 8.91 KB 0644
filecmp.cpython-34.pyo File 8.91 KB 0644
fileinput.cpython-34.pyc File 13.96 KB 0644
fileinput.cpython-34.pyo File 13.96 KB 0644
fnmatch.cpython-34.pyc File 3.07 KB 0644
fnmatch.cpython-34.pyo File 3.07 KB 0644
formatter.cpython-34.pyc File 18.47 KB 0644
formatter.cpython-34.pyo File 18.47 KB 0644
fractions.cpython-34.pyc File 18.82 KB 0644
fractions.cpython-34.pyo File 18.82 KB 0644
ftplib.cpython-34.pyc File 32.54 KB 0644
ftplib.cpython-34.pyo File 32.54 KB 0644
functools.cpython-34.pyc File 23.06 KB 0644
functools.cpython-34.pyo File 23.06 KB 0644
genericpath.cpython-34.pyc File 3.41 KB 0644
genericpath.cpython-34.pyo File 3.41 KB 0644
getopt.cpython-34.pyc File 6.58 KB 0644
getopt.cpython-34.pyo File 6.53 KB 0644
getpass.cpython-34.pyc File 4.52 KB 0644
getpass.cpython-34.pyo File 4.52 KB 0644
gettext.cpython-34.pyc File 14.82 KB 0644
gettext.cpython-34.pyo File 14.82 KB 0644
glob.cpython-34.pyc File 2.81 KB 0644
glob.cpython-34.pyo File 2.81 KB 0644
gzip.cpython-34.pyc File 18.99 KB 0644
gzip.cpython-34.pyo File 18.94 KB 0644
hashlib.cpython-34.pyc File 7.76 KB 0644
hashlib.cpython-34.pyo File 7.76 KB 0644
heapq.cpython-34.pyc File 13.58 KB 0644
heapq.cpython-34.pyo File 13.58 KB 0644
hmac.cpython-34.pyc File 5.03 KB 0644
hmac.cpython-34.pyo File 5.03 KB 0644
imaplib.cpython-34.pyc File 42.46 KB 0644
imaplib.cpython-34.pyo File 40 KB 0644
imghdr.cpython-34.pyc File 4.05 KB 0644
imghdr.cpython-34.pyo File 4.05 KB 0644
imp.cpython-34.pyc File 9.64 KB 0644
imp.cpython-34.pyo File 9.64 KB 0644
inspect.cpython-34.pyc File 74.54 KB 0644
inspect.cpython-34.pyo File 74.22 KB 0644
io.cpython-34.pyc File 3.38 KB 0644
io.cpython-34.pyo File 3.38 KB 0644
ipaddress.cpython-34.pyc File 61.51 KB 0644
ipaddress.cpython-34.pyo File 61.51 KB 0644
keyword.cpython-34.pyc File 1.9 KB 0644
keyword.cpython-34.pyo File 1.9 KB 0644
linecache.cpython-34.pyc File 3.04 KB 0644
linecache.cpython-34.pyo File 3.04 KB 0644
locale.cpython-34.pyc File 36.4 KB 0644
locale.cpython-34.pyo File 36.4 KB 0644
lzma.cpython-34.pyc File 15.54 KB 0644
lzma.cpython-34.pyo File 15.54 KB 0644
macpath.cpython-34.pyc File 5.87 KB 0644
macpath.cpython-34.pyo File 5.87 KB 0644
macurl2path.cpython-34.pyc File 2.05 KB 0644
macurl2path.cpython-34.pyo File 2.05 KB 0644
mailbox.cpython-34.pyc File 68.64 KB 0644
mailbox.cpython-34.pyo File 68.54 KB 0644
mailcap.cpython-34.pyc File 6.39 KB 0644
mailcap.cpython-34.pyo File 6.39 KB 0644
mimetypes.cpython-34.pyc File 16.41 KB 0644
mimetypes.cpython-34.pyo File 16.41 KB 0644
modulefinder.cpython-34.pyc File 16.97 KB 0644
modulefinder.cpython-34.pyo File 16.89 KB 0644
netrc.cpython-34.pyc File 4.18 KB 0644
netrc.cpython-34.pyo File 4.18 KB 0644
nntplib.cpython-34.pyc File 35.46 KB 0644
nntplib.cpython-34.pyo File 35.46 KB 0644
ntpath.cpython-34.pyc File 12.99 KB 0644
ntpath.cpython-34.pyo File 12.99 KB 0644
nturl2path.cpython-34.pyc File 1.68 KB 0644
nturl2path.cpython-34.pyo File 1.68 KB 0644
numbers.cpython-34.pyc File 12.37 KB 0644
numbers.cpython-34.pyo File 12.37 KB 0644
opcode.cpython-34.pyc File 5.05 KB 0644
opcode.cpython-34.pyo File 5.05 KB 0644
operator.cpython-34.pyc File 12.48 KB 0644
operator.cpython-34.pyo File 12.48 KB 0644
optparse.cpython-34.pyc File 50.33 KB 0644
optparse.cpython-34.pyo File 50.25 KB 0644
os.cpython-34.pyc File 28.91 KB 0644
os.cpython-34.pyo File 28.91 KB 0644
pathlib.cpython-34.pyc File 39.53 KB 0644
pathlib.cpython-34.pyo File 39.53 KB 0644
pdb.cpython-34.pyc File 48.31 KB 0644
pdb.cpython-34.pyo File 48.25 KB 0644
pickle.cpython-34.pyc File 45.88 KB 0644
pickle.cpython-34.pyo File 45.74 KB 0644
pickletools.cpython-34.pyc File 68.61 KB 0644
pickletools.cpython-34.pyo File 67.55 KB 0644
pipes.cpython-34.pyc File 8.23 KB 0644
pipes.cpython-34.pyo File 8.23 KB 0644
pkgutil.cpython-34.pyc File 17.19 KB 0644
pkgutil.cpython-34.pyo File 17.19 KB 0644
platform.cpython-34.pyc File 30.44 KB 0644
platform.cpython-34.pyo File 30.44 KB 0644
plistlib.cpython-34.pyc File 29.44 KB 0644
plistlib.cpython-34.pyo File 29.36 KB 0644
poplib.cpython-34.pyc File 13.43 KB 0644
poplib.cpython-34.pyo File 13.43 KB 0644
posixpath.cpython-34.pyc File 9.58 KB 0644
posixpath.cpython-34.pyo File 9.58 KB 0644
pprint.cpython-34.pyc File 11.19 KB 0644
pprint.cpython-34.pyo File 11.03 KB 0644
profile.cpython-34.pyc File 14.8 KB 0644
profile.cpython-34.pyo File 14.55 KB 0644
pstats.cpython-34.pyc File 23.12 KB 0644
pstats.cpython-34.pyo File 23.12 KB 0644
pty.cpython-34.pyc File 4.13 KB 0644
pty.cpython-34.pyo File 4.13 KB 0644
py_compile.cpython-34.pyc File 6.7 KB 0644
py_compile.cpython-34.pyo File 6.7 KB 0644
pyclbr.cpython-34.pyc File 8.98 KB 0644
pyclbr.cpython-34.pyo File 8.98 KB 0644
pydoc.cpython-34.pyc File 88.78 KB 0644
pydoc.cpython-34.pyo File 88.72 KB 0644
queue.cpython-34.pyc File 9.04 KB 0644
queue.cpython-34.pyo File 9.04 KB 0644
quopri.cpython-34.pyc File 6.29 KB 0644
quopri.cpython-34.pyo File 6.09 KB 0644
random.cpython-34.pyc File 18.61 KB 0644
random.cpython-34.pyo File 18.61 KB 0644
re.cpython-34.pyc File 14.21 KB 0644
re.cpython-34.pyo File 14.21 KB 0644
reprlib.cpython-34.pyc File 5.73 KB 0644
reprlib.cpython-34.pyo File 5.73 KB 0644
rlcompleter.cpython-34.pyc File 5.56 KB 0644
rlcompleter.cpython-34.pyo File 5.56 KB 0644
runpy.cpython-34.pyc File 7.57 KB 0644
runpy.cpython-34.pyo File 7.57 KB 0644
sched.cpython-34.pyc File 6.42 KB 0644
sched.cpython-34.pyo File 6.42 KB 0644
selectors.cpython-34.pyc File 16.35 KB 0644
selectors.cpython-34.pyo File 16.35 KB 0644
shelve.cpython-34.pyc File 9.72 KB 0644
shelve.cpython-34.pyo File 9.72 KB 0644
shlex.cpython-34.pyc File 7.34 KB 0644
shlex.cpython-34.pyo File 7.34 KB 0644
shutil.cpython-34.pyc File 32.24 KB 0644
shutil.cpython-34.pyo File 32.24 KB 0644
site.cpython-34.pyc File 17.55 KB 0644
site.cpython-34.pyo File 17.55 KB 0644
smtpd.cpython-34.pyc File 25.07 KB 0644
smtpd.cpython-34.pyo File 25.07 KB 0644
smtplib.cpython-34.pyc File 32.35 KB 0644
smtplib.cpython-34.pyo File 32.28 KB 0644
sndhdr.cpython-34.pyc File 6.61 KB 0644
sndhdr.cpython-34.pyo File 6.61 KB 0644
socket.cpython-34.pyc File 17.69 KB 0644
socket.cpython-34.pyo File 17.64 KB 0644
socketserver.cpython-34.pyc File 22.71 KB 0644
socketserver.cpython-34.pyo File 22.71 KB 0644
sre_compile.cpython-34.pyc File 11.66 KB 0644
sre_compile.cpython-34.pyo File 11.5 KB 0644
sre_constants.cpython-34.pyc File 5.45 KB 0644
sre_constants.cpython-34.pyo File 5.45 KB 0644
sre_parse.cpython-34.pyc File 19.76 KB 0644
sre_parse.cpython-34.pyo File 19.76 KB 0644
ssl.cpython-34.pyc File 26.96 KB 0644
ssl.cpython-34.pyo File 26.96 KB 0644
stat.cpython-34.pyc File 3.49 KB 0644
stat.cpython-34.pyo File 3.49 KB 0644
statistics.cpython-34.pyc File 16.76 KB 0644
statistics.cpython-34.pyo File 16.46 KB 0644
string.cpython-34.pyc File 8.18 KB 0644
string.cpython-34.pyo File 8.18 KB 0644
stringprep.cpython-34.pyc File 13.32 KB 0644
stringprep.cpython-34.pyo File 13.25 KB 0644
struct.cpython-34.pyc File 347 B 0644
struct.cpython-34.pyo File 347 B 0644
subprocess.cpython-34.pyc File 42.34 KB 0644
subprocess.cpython-34.pyo File 42.23 KB 0644
sunau.cpython-34.pyc File 17.88 KB 0644
sunau.cpython-34.pyo File 17.88 KB 0644
symbol.cpython-34.pyc File 2.6 KB 0644
symbol.cpython-34.pyo File 2.6 KB 0644
symtable.cpython-34.pyc File 11.04 KB 0644
symtable.cpython-34.pyo File 10.92 KB 0644
sysconfig.cpython-34.pyc File 16.88 KB 0644
sysconfig.cpython-34.pyo File 16.88 KB 0644
tabnanny.cpython-34.pyc File 7.57 KB 0644
tabnanny.cpython-34.pyo File 7.57 KB 0644
tarfile.cpython-34.pyc File 66.45 KB 0644
tarfile.cpython-34.pyo File 66.45 KB 0644
telnetlib.cpython-34.pyc File 18.94 KB 0644
telnetlib.cpython-34.pyo File 18.94 KB 0644
tempfile.cpython-34.pyc File 21.07 KB 0644
tempfile.cpython-34.pyo File 21.07 KB 0644
textwrap.cpython-34.pyc File 13.48 KB 0644
textwrap.cpython-34.pyo File 13.39 KB 0644
this.cpython-34.pyc File 1.29 KB 0644
this.cpython-34.pyo File 1.29 KB 0644
threading.cpython-34.pyc File 38.05 KB 0644
threading.cpython-34.pyo File 37.36 KB 0644
timeit.cpython-34.pyc File 10.8 KB 0644
timeit.cpython-34.pyo File 10.8 KB 0644
token.cpython-34.pyc File 3.53 KB 0644
token.cpython-34.pyo File 3.53 KB 0644
tokenize.cpython-34.pyc File 19.48 KB 0644
tokenize.cpython-34.pyo File 19.43 KB 0644
trace.cpython-34.pyc File 23.62 KB 0644
trace.cpython-34.pyo File 23.56 KB 0644
traceback.cpython-34.pyc File 10.83 KB 0644
traceback.cpython-34.pyo File 10.83 KB 0644
tracemalloc.cpython-34.pyc File 16.73 KB 0644
tracemalloc.cpython-34.pyo File 16.73 KB 0644
tty.cpython-34.pyc File 1.12 KB 0644
tty.cpython-34.pyo File 1.12 KB 0644
types.cpython-34.pyc File 5.43 KB 0644
types.cpython-34.pyo File 5.43 KB 0644
uu.cpython-34.pyc File 3.93 KB 0644
uu.cpython-34.pyo File 3.93 KB 0644
uuid.cpython-34.pyc File 21.35 KB 0644
uuid.cpython-34.pyo File 21.29 KB 0644
warnings.cpython-34.pyc File 11.98 KB 0644
warnings.cpython-34.pyo File 11.27 KB 0644
wave.cpython-34.pyc File 18.69 KB 0644
wave.cpython-34.pyo File 18.63 KB 0644
weakref.cpython-34.pyc File 19.87 KB 0644
weakref.cpython-34.pyo File 19.83 KB 0644
webbrowser.cpython-34.pyc File 16.73 KB 0644
webbrowser.cpython-34.pyo File 16.69 KB 0644
xdrlib.cpython-34.pyc File 8.79 KB 0644
xdrlib.cpython-34.pyo File 8.79 KB 0644
zipfile.cpython-34.pyc File 44.75 KB 0644
zipfile.cpython-34.pyo File 44.7 KB 0644