SILENT KILLERPanel

Current Path: > > lib > python3.6 > site-packages > OpenSSL


Operation   : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
Software     : Apache
Server IP    : 162.0.232.56 | Your IP: 216.73.216.111
Domains      : 1034 Domain(s)
Permission   : [ 0755 ]

Files and Folders in: //lib/python3.6/site-packages/OpenSSL

NameTypeSizeLast ModifiedActions
__pycache__ Directory - -
SSL.py File 88967 bytes January 21 2019 19:04:11.
__init__.py File 447 bytes January 21 2019 19:04:11.
_util.py File 4174 bytes January 21 2019 19:04:11.
crypto.py File 100500 bytes January 21 2019 19:04:11.
debug.py File 1049 bytes January 21 2019 19:04:11.
rand.py File 1042 bytes January 21 2019 19:04:11.
tsafe.py File 1102 bytes January 21 2019 19:04:11.
version.py File 626 bytes January 21 2019 19:22:32.

Reading File: //lib/python3.6/site-packages/OpenSSL/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))

SILENT KILLER Tool