Linux newlinux5.pouyasazan.org 3.10.0-962.3.2.lve1.5.60.el7.x86_64 #1 SMP Fri Jul 23 07:07:00 EDT 2021 x86_64
LiteSpeed
Server IP : 88.99.66.243 & Your IP : 216.73.216.178
Domains :
Cant Read [ /etc/named.conf ]
User : wdbbsgxf
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib /
python2.7 /
site-packages /
future /
moves /
html /
Delete
Unzip
Name
Size
Permission
Date
Action
__init__.py
1016
B
-rw-r--r--
2019-10-31 04:04
__init__.pyc
1
KB
-rw-r--r--
2020-01-24 15:25
__init__.pyo
1
KB
-rw-r--r--
2020-01-24 15:25
entities.py
177
B
-rw-r--r--
2019-10-31 04:04
entities.pyc
390
B
-rw-r--r--
2020-01-24 15:25
entities.pyo
390
B
-rw-r--r--
2020-01-24 15:25
parser.py
167
B
-rw-r--r--
2019-10-31 04:04
parser.pyc
382
B
-rw-r--r--
2020-01-24 15:25
parser.pyo
382
B
-rw-r--r--
2020-01-24 15:25
Save
Rename
from __future__ import absolute_import from future.utils import PY3 __future_module__ = True if PY3: from html import * else: # cgi.escape isn't good enough for the single Py3.3 html test to pass. # Define it inline here instead. From the Py3.4 stdlib. Note that the # html.escape() function from the Py3.3 stdlib is not suitable for use on # Py2.x. """ General functions for HTML manipulation. """ def escape(s, quote=True): """ Replace special characters "&", "<" and ">" to HTML-safe sequences. If the optional flag quote is true (the default), the quotation mark characters, both double quote (") and single quote (') characters are also translated. """ s = s.replace("&", "&") # Must be done first! s = s.replace("<", "<") s = s.replace(">", ">") if quote: s = s.replace('"', """) s = s.replace('\'', "'") return s __all__ = ['escape']