!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: Apache. PHP/7.3.33 

uname -a: Linux web25.us.cloudlogin.co 5.10.237-xeon-hst #1 SMP Mon May 5 15:10:04 UTC 2025 x86_64 

uid=233359(alpastrology) gid=888(tty) groups=888(tty),33(tape) 

Safe-mode: OFF (not secure)

/usr/lib/python3.6/site-packages/tuned/profiles/   drwxr-xr-x
Free 6181.91 GB of 6263.11 GB (98.7%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     unit.py (2.43 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
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

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by KaizenLouie | C99Shell Github | Generation time: 0.012 ]--