Linux webserver 6.8.0-49-generic #49~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Wed Nov 6 17:42:15 UTC 2 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.1.1 & Your IP : 18.188.185.167
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
2024-10-31 06:51
_securetransport
[ DIR ]
drwxr-xr-x
2024-10-31 06:51
__init__.py
0
B
-rw-r--r--
2021-05-26 17:00
_appengine_environ.py
957
B
-rw-r--r--
2021-05-26 17:01
appengine.py
10.74
KB
-rw-r--r--
2024-10-17 12:49
ntlmpool.py
4.05
KB
-rw-r--r--
2024-10-17 12:49
pyopenssl.py
16.46
KB
-rw-r--r--
2024-10-17 12:49
securetransport.py
33.61
KB
-rw-r--r--
2021-05-26 17:01
socks.py
6.93
KB
-rw-r--r--
2021-05-26 17:01
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