Linux velvet.gennetworks.in 4.18.0-553.83.1.lve.el8.x86_64 #1 SMP Wed Nov 12 10:04:12 UTC 2025 x86_64
LiteSpeed
Server IP : 161.129.70.235 & Your IP : 216.73.216.5
Domains :
Cant Read [ /etc/named.conf ]
User : virtueex
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
python3.6 /
site-packages /
urllib3 /
contrib /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2026-02-18 11:40
_securetransport
[ DIR ]
drwxr-xr-x
2026-02-18 11:40
__init__.py
0
B
-rw-r--r--
2019-04-17 23:16
_appengine_environ.py
717
B
-rw-r--r--
2019-04-17 23:16
appengine.py
10.66
KB
-rw-r--r--
2019-04-17 23:16
ntlmpool.py
4.35
KB
-rw-r--r--
2019-04-17 23:16
pyopenssl.py
15.48
KB
-rw-r--r--
2019-04-17 23:16
securetransport.py
29.6
KB
-rw-r--r--
2019-04-17 23:16
socks.py
6.24
KB
-rw-r--r--
2019-04-17 23:16
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() or is_prod_appengine_mvms()) def is_appengine_sandbox(): return is_appengine() and not is_prod_appengine_mvms() def is_local_appengine(): return ('APPENGINE_RUNTIME' in os.environ and 'Development/' in os.environ['SERVER_SOFTWARE']) def is_prod_appengine(): return ('APPENGINE_RUNTIME' in os.environ and 'Google App Engine/' in os.environ['SERVER_SOFTWARE'] and not is_prod_appengine_mvms()) def is_prod_appengine_mvms(): return os.environ.get('GAE_VM', False) == 'true'