Linux vmi2545633.contaboserver.net 6.1.0-32-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.129-1 (2025-03-06) x86_64
Apache/2.4.62 (Debian)
Server IP : 127.0.0.1 & Your IP : 127.0.0.1
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
python3 /
dist-packages /
urllib3 /
contrib /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2025-04-07 20:15
_securetransport
[ DIR ]
drwxr-xr-x
2025-04-07 20:15
__init__.py
0
B
-rw-r--r--
2022-08-22 13:18
_appengine_environ.py
957
B
-rw-r--r--
2022-08-22 13:18
appengine.py
10.74
KB
-rw-r--r--
2024-12-21 14:28
ntlmpool.py
4.42
KB
-rw-r--r--
2024-12-21 14:28
pyopenssl.py
16.74
KB
-rw-r--r--
2024-12-21 14:28
securetransport.py
33.61
KB
-rw-r--r--
2022-08-22 13:18
socks.py
6.93
KB
-rw-r--r--
2022-08-22 13:18
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