Linux ip-148-66-134-25.ip.secureserver.net 3.10.0-1160.119.1.el7.tuxcare.els10.x86_64 #1 SMP Fri Oct 11 21:40:41 UTC 2024 x86_64
Apache
: 148.66.134.25 | : 3.135.216.196
66 Domain
8.0.30
amvm
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
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
usr /
lib /
python2.7 /
site-packages /
tuned /
plugins /
[ HOME SHELL ]
Name
Size
Permission
Action
instance
[ DIR ]
drwxr-xr-x
__init__.py
49
B
-rw-r--r--
__init__.pyc
232
B
-rw-r--r--
__init__.pyo
232
B
-rw-r--r--
base.py
21.7
KB
-rw-r--r--
base.pyc
24.43
KB
-rw-r--r--
base.pyo
24.43
KB
-rw-r--r--
decorators.py
983
B
-rw-r--r--
decorators.pyc
1.52
KB
-rw-r--r--
decorators.pyo
1.52
KB
-rw-r--r--
exceptions.py
99
B
-rw-r--r--
exceptions.pyc
460
B
-rw-r--r--
exceptions.pyo
460
B
-rw-r--r--
hotplug.py
2.97
KB
-rw-r--r--
hotplug.pyc
4.09
KB
-rw-r--r--
hotplug.pyo
4.09
KB
-rw-r--r--
plugin_audio.py
2.46
KB
-rw-r--r--
plugin_audio.pyc
4.36
KB
-rw-r--r--
plugin_audio.pyo
4.36
KB
-rw-r--r--
plugin_bootloader.py
12.6
KB
-rw-r--r--
plugin_bootloader.pyc
15.47
KB
-rw-r--r--
plugin_bootloader.pyo
15.47
KB
-rw-r--r--
plugin_cpu.py
12.95
KB
-rw-r--r--
plugin_cpu.pyc
15.46
KB
-rw-r--r--
plugin_cpu.pyo
15.42
KB
-rw-r--r--
plugin_disk.py
13.77
KB
-rw-r--r--
plugin_disk.pyc
16.92
KB
-rw-r--r--
plugin_disk.pyo
16.92
KB
-rw-r--r--
plugin_eeepc_she.py
2.04
KB
-rw-r--r--
plugin_eeepc_she.pyc
3.3
KB
-rw-r--r--
plugin_eeepc_she.pyo
3.3
KB
-rw-r--r--
plugin_modules.py
3.8
KB
-rw-r--r--
plugin_modules.pyc
5.64
KB
-rw-r--r--
plugin_modules.pyo
5.64
KB
-rw-r--r--
plugin_mounts.py
5.17
KB
-rw-r--r--
plugin_mounts.pyc
6.36
KB
-rw-r--r--
plugin_mounts.pyo
6.36
KB
-rw-r--r--
plugin_net.py
14.02
KB
-rw-r--r--
plugin_net.pyc
16.5
KB
-rw-r--r--
plugin_net.pyo
16.5
KB
-rw-r--r--
plugin_scheduler.py
23.2
KB
-rw-r--r--
plugin_scheduler.pyc
25.28
KB
-rw-r--r--
plugin_scheduler.pyo
25.28
KB
-rw-r--r--
plugin_script.py
2.47
KB
-rw-r--r--
plugin_script.pyc
3.77
KB
-rw-r--r--
plugin_script.pyo
3.71
KB
-rw-r--r--
plugin_scsi_host.py
2.59
KB
-rw-r--r--
plugin_scsi_host.pyc
5.01
KB
-rw-r--r--
plugin_scsi_host.pyo
5.01
KB
-rw-r--r--
plugin_selinux.py
1.56
KB
-rw-r--r--
plugin_selinux.pyc
2.96
KB
-rw-r--r--
plugin_selinux.pyo
2.96
KB
-rw-r--r--
plugin_sysctl.py
5.45
KB
-rw-r--r--
plugin_sysctl.pyc
7.33
KB
-rw-r--r--
plugin_sysctl.pyo
7.33
KB
-rw-r--r--
plugin_sysfs.py
2.05
KB
-rw-r--r--
plugin_sysfs.pyc
3.77
KB
-rw-r--r--
plugin_sysfs.pyo
3.77
KB
-rw-r--r--
plugin_systemd.py
4.82
KB
-rw-r--r--
plugin_systemd.pyc
6.87
KB
-rw-r--r--
plugin_systemd.pyo
6.87
KB
-rw-r--r--
plugin_usb.py
1.49
KB
-rw-r--r--
plugin_usb.pyc
3.06
KB
-rw-r--r--
plugin_usb.pyo
3.06
KB
-rw-r--r--
plugin_video.py
2.81
KB
-rw-r--r--
plugin_video.pyc
4.2
KB
-rw-r--r--
plugin_video.pyo
4.2
KB
-rw-r--r--
plugin_vm.py
2.74
KB
-rw-r--r--
plugin_vm.pyc
4.31
KB
-rw-r--r--
plugin_vm.pyo
4.31
KB
-rw-r--r--
repository.py
1.49
KB
-rw-r--r--
repository.pyc
2.46
KB
-rw-r--r--
repository.pyo
2.4
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : plugin_sysctl.py
import re from . import base from .decorators import * import tuned.logs from subprocess import * from tuned.utils.commands import commands import tuned.consts as consts import errno import os log = tuned.logs.get() DEPRECATED_SYSCTL_OPTIONS = [ "base_reachable_time", "retrans_time" ] SYSCTL_CONFIG_DIRS = [ "/run/sysctl.d", "/etc/sysctl.d" ] class SysctlPlugin(base.Plugin): """ Plugin for applying custom sysctl options. """ def __init__(self, *args, **kwargs): super(SysctlPlugin, self).__init__(*args, **kwargs) self._has_dynamic_options = True self._cmd = commands() def _instance_init(self, instance): instance._has_dynamic_tuning = False instance._has_static_tuning = True # FIXME: do we want to do this here? # recover original values in case of crash storage_key = self._storage_key(instance.name) instance._sysctl_original = self._storage.get(storage_key, {}) if len(instance._sysctl_original) > 0: log.info("recovering old sysctl settings from previous run") self._instance_unapply_static(instance) instance._sysctl_original = {} self._storage.unset(storage_key) instance._sysctl = instance.options def _instance_cleanup(self, instance): storage_key = self._storage_key(instance.name) self._storage.unset(storage_key) def _instance_apply_static(self, instance): for option, value in list(instance._sysctl.items()): original_value = _read_sysctl(option) if original_value is None: log.error("sysctl option %s will not be set, failed to read the original value." % option) else: new_value = self._variables.expand( self._cmd.unquote(value)) new_value = self._process_assignment_modifiers( new_value, original_value) if new_value is not None: instance._sysctl_original[option] = original_value _write_sysctl(option, new_value) storage_key = self._storage_key(instance.name) self._storage.set(storage_key, instance._sysctl_original) if self._global_cfg.get_bool(consts.CFG_REAPPLY_SYSCTL, consts.CFG_DEF_REAPPLY_SYSCTL): log.info("reapplying system sysctl") _apply_system_sysctl() def _instance_verify_static(self, instance, ignore_missing, devices): ret = True # override, so always skip missing ignore_missing = True for option, value in list(instance._sysctl.items()): curr_val = _read_sysctl(option) value = self._process_assignment_modifiers(self._variables.expand(value), curr_val) if value is not None: if self._verify_value(option, self._cmd.remove_ws(value), self._cmd.remove_ws(curr_val), ignore_missing) == False: ret = False return ret def _instance_unapply_static(self, instance, full_rollback = False): for option, value in list(instance._sysctl_original.items()): _write_sysctl(option, value) def _apply_system_sysctl(): files = {} for d in SYSCTL_CONFIG_DIRS: try: flist = os.listdir(d) except: continue for fname in flist: if not fname.endswith(".conf"): continue if fname not in files: files[fname] = d for fname in sorted(files.keys()): d = files[fname] path = "%s/%s" % (d, fname) _apply_sysctl_config_file(path) _apply_sysctl_config_file("/etc/sysctl.conf") def _apply_sysctl_config_file(path): log.debug("Applying sysctl settings from file %s" % path) try: with open(path, "r") as f: for lineno, line in enumerate(f, 1): _apply_sysctl_config_line(path, lineno, line) log.debug("Finished applying sysctl settings from file %s" % path) except (OSError, IOError) as e: if e.errno != errno.ENOENT: log.error("Error reading sysctl settings from file %s: %s" % (path, str(e))) def _apply_sysctl_config_line(path, lineno, line): line = line.strip() if len(line) == 0 or line[0] == "#" or line[0] == ";": return tmp = line.split("=", 1) if len(tmp) != 2: log.error("Syntax error in file %s, line %d" % (path, lineno)) return option, value = tmp option = option.strip() if len(option) == 0: log.error("Syntax error in file %s, line %d" % (path, lineno)) return value = value.strip() _write_sysctl(option, value, ignore_missing = True) def _get_sysctl_path(option): return "/proc/sys/%s" % option.replace(".", "/") def _read_sysctl(option): path = _get_sysctl_path(option) try: with open(path, "r") as f: line = "" for i, line in enumerate(f): if i > 0: log.error("Failed to read sysctl parameter '%s', multi-line values are unsupported" % option) return None value = line.strip() log.debug("Value of sysctl parameter '%s' is '%s'" % (option, value)) return value except (OSError, IOError) as e: if e.errno == errno.ENOENT: log.error("Failed to read sysctl parameter '%s', the parameter does not exist" % option) else: log.error("Failed to read sysctl parameter '%s': %s" % (option, str(e))) return None def _write_sysctl(option, value, ignore_missing = False): path = _get_sysctl_path(option) if os.path.basename(path) in DEPRECATED_SYSCTL_OPTIONS: log.error("Refusing to set deprecated sysctl option %s" % option) return False try: log.debug("Setting sysctl parameter '%s' to '%s'" % (option, value)) with open(path, "w") as f: f.write(value) return True except (OSError, IOError) as e: if e.errno == errno.ENOENT: log_func = log.debug if ignore_missing else log.error log_func("Failed to set sysctl parameter '%s' to '%s', the parameter does not exist" % (option, value)) else: log.error("Failed to set sysctl parameter '%s' to '%s': %s" % (option, value, str(e))) return False
Close