Current Path: > > opt > cloudlinux > venv > lib64 > python3.11 > site-packages > > clsentry
Operation : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
__pycache__ | Directory | - | - | |
__init__.py | File | 5447 bytes | June 23 2025 12:47:48. | |
client.py | File | 5092 bytes | June 23 2025 12:47:48. | |
processors.py | File | 901 bytes | June 23 2025 12:47:48. | |
utils.py | File | 987 bytes | June 23 2025 12:47:48. |
#!/opt/cloudlinux/venv/bin/python3 -bb # coding=utf-8 # # Copyright © Cloud Linux GmbH & Cloud Linux Software, Inc 2010-2019 All Rights Reserved # # Licensed under CLOUD LINUX LICENSE AGREEMENT # http://cloudlinux.com/docs/LICENSE.TXT import os from clcommon.utils import get_file_lines PACKAGES_FILES_PATH = '/usr/share/cloudlinux' SENSITIVE_FIELDS = [ 'password', 'secret', 'passwd', 'authorization', 'api_key', 'apikey', 'sentry_dsn', 'access_token', 'email', 'token', 'pass', ] def get_pkg_version(package): """ Get package version using rpm or None if any error or package absent. :type package: str :rtype: str|None """ # First we try to read package version from file try: file_lines = get_file_lines(os.path.join(PACKAGES_FILES_PATH, package)) if file_lines: return file_lines[0].strip().split(".el", 1)[0] except (OSError, IOError, IndexError): return None
SILENT KILLER Tool