Linux premium155.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
LiteSpeed
: 162.0.235.200 | : 3.137.175.80
Cant Read [ /etc/named.conf ]
7.4.33
varifktc
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
lib /
python3.6 /
site-packages /
OpenSSL /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
SSL.py
86.88
KB
-rw-r--r--
__init__.py
447
B
-rw-r--r--
_util.py
4.08
KB
-rw-r--r--
crypto.py
98.14
KB
-rw-r--r--
debug.py
1.02
KB
-rw-r--r--
rand.py
1.02
KB
-rw-r--r--
tsafe.py
1.08
KB
-rw-r--r--
version.py
626
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : tsafe.py
import warnings from threading import RLock as _RLock from OpenSSL import SSL as _ssl warnings.warn( "OpenSSL.tsafe is deprecated and will be removed", DeprecationWarning, stacklevel=3 ) class Connection: def __init__(self, *args): self._ssl_conn = _ssl.Connection(*args) self._lock = _RLock() for f in ('get_context', 'pending', 'send', 'write', 'recv', 'read', 'renegotiate', 'bind', 'listen', 'connect', 'accept', 'setblocking', 'fileno', 'shutdown', 'close', 'get_cipher_list', 'getpeername', 'getsockname', 'getsockopt', 'setsockopt', 'makefile', 'get_app_data', 'set_app_data', 'state_string', 'sock_shutdown', 'get_peer_certificate', 'get_peer_cert_chain', 'want_read', 'want_write', 'set_connect_state', 'set_accept_state', 'connect_ex', 'sendall'): exec("""def %s(self, *args): self._lock.acquire() try: return self._ssl_conn.%s(*args) finally: self._lock.release()\n""" % (f, f))
Close