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.145.180.152
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 /
tuned /
profiles /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
functions
[ DIR ]
drwxr-xr-x
__init__.py
281
B
-rw-r--r--
exceptions.py
95
B
-rw-r--r--
factory.py
141
B
-rw-r--r--
loader.py
4.17
KB
-rw-r--r--
locator.py
3.7
KB
-rw-r--r--
merger.py
2.13
KB
-rw-r--r--
profile.py
1.11
KB
-rw-r--r--
unit.py
2.43
KB
-rw-r--r--
variables.py
2.29
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : unit.py
import collections import re class Unit(object): """ Unit description. """ __slots__ = [ "_name", "_type", "_enabled", "_replace", "_drop", "_devices", "_devices_udev_regex", \ "_cpuinfo_regex", "_uname_regex", "_script_pre", "_script_post", "_options" ] def __init__(self, name, config): self._name = name self._type = config.pop("type", self._name) self._enabled = config.pop("enabled", True) in [True, "True", "true", 1, "1"] self._replace = config.pop("replace", False) in [True, "True", "true", 1, "1"] self._drop = config.pop("drop", None) if self._drop is not None: self._drop = re.split(r"\b\s*[,;]\s*", str(self._drop)) self._devices = config.pop("devices", "*") self._devices_udev_regex = config.pop("devices_udev_regex", None) self._cpuinfo_regex = config.pop("cpuinfo_regex", None) self._uname_regex = config.pop("uname_regex", None) self._script_pre = config.pop("script_pre", None) self._script_post = config.pop("script_post", None) self._options = collections.OrderedDict(config) @property def name(self): return self._name @property def type(self): return self._type @type.setter def type(self, value): self._type = value @property def enabled(self): return self._enabled @enabled.setter def enabled(self, value): self._enabled = value @property def replace(self): return self._replace @property def drop(self): return self._drop @drop.setter def drop(self, value): self._drop = value @property def devices(self): return self._devices @devices.setter def devices(self, value): self._devices = value @property def devices_udev_regex(self): return self._devices_udev_regex @devices_udev_regex.setter def devices_udev_regex(self, value): self._devices_udev_regex = value @property def cpuinfo_regex(self): return self._cpuinfo_regex @cpuinfo_regex.setter def cpuinfo_regex(self, value): self._cpuinfo_regex = value @property def uname_regex(self): return self._uname_regex @uname_regex.setter def uname_regex(self, value): self._uname_regex = value @property def script_pre(self): return self._script_pre @script_pre.setter def script_pre(self, value): self._script_pre = value @property def script_post(self): return self._script_post @script_post.setter def script_post(self, value): self._script_post = value @property def options(self): return self._options @options.setter def options(self, value): self._options = value
Close