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 /
share /
mu-editor /
mu /
resources /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
css
[ DIR ]
drwxr-xr-x
fonts
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
pygamezero
[ DIR ]
drwxr-xr-x
__init__.py
1.76
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : __init__.py
""" Copyright (c) 2015-2017 Nicholas H.Tollervey and others (see the AUTHORS file). Based upon work done for Puppy IDE by Dan Pope, Nicholas Tollervey and Damien George. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. """ from pkg_resources import resource_filename, resource_string from PyQt5.QtGui import QPixmap, QIcon from PyQt5.QtCore import QDir # The following lines add the images and css directories to the search path. QDir.addSearchPath('images', resource_filename(__name__, 'images')) QDir.addSearchPath('css', resource_filename(__name__, 'css')) def path(name, resource_dir="images/"): """Return the filename for the referenced image.""" return resource_filename(__name__, resource_dir + name) def load_icon(name): """Load an icon from the resources directory.""" return QIcon(path(name)) def load_pixmap(name): """Load a pixmap from the resources directory.""" return QPixmap(path(name)) def load_stylesheet(name): """Load a CSS stylesheet from the resources directory.""" return resource_string(__name__, "css/" + name).decode('utf8') def load_font_data(name): """ Load the (binary) content of a font as bytes """ return resource_string(__name__, "fonts/" + name)
Close