Linux server.bornosky.com 4.18.0-477.13.1.lve.el8.x86_64 #1 SMP Thu Jun 1 16:40:47 EDT 2023 x86_64
Apache
: 95.217.200.235 | : 18.117.7.254
Cant Read [ /etc/named.conf ]
7.3.33
aggscedu
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
lib /
python3.6 /
site-packages /
urllib3 /
contrib /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
_securetransport
[ DIR ]
drwxr-xr-x
__init__.py
0
B
-rw-r--r--
_appengine_environ.py
717
B
-rw-r--r--
appengine.py
10.66
KB
-rw-r--r--
ntlmpool.py
4.35
KB
-rw-r--r--
pyopenssl.py
15.48
KB
-rw-r--r--
securetransport.py
29.6
KB
-rw-r--r--
socks.py
6.24
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : _appengine_environ.py
""" 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'
Close