📁
SKYSHELL MANAGER
PHP v8.0.30
Create
Create
Path:
root
/
home
/
godaofbq
/
besthyperbaric.com
/
wp-includesac411f
/
js
/
tinymce
/
themes
/
Name
Size
Perm
Actions
📄
error_log
26132.89 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
index.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
Edit: foremanctl.py
# Copyright (C) 2026 Red Hat, Inc., Pavel Moravec <pmoravec@redhat.com> # This file is part of the sos project: https://github.com/sosreport/sos # # This copyrighted material is made available to anyone wishing to use, # modify, copy, or redistribute it subject to the terms and conditions of # version 2 of the GNU General Public License. # # See the LICENSE file in the source distribution for further information. from sos.report.plugins import (Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin) class Foremanctl(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin): short_desc = 'Foremanctl as foreman in pods' plugin_name = 'foremanctl' profiles = ('sysmgmt',) packages = ('foremanctl', ) containers = ('foreman', 'foreman-proxy',) def setup(self): self.add_copy_spec([ "/etc/foremanctl/inventory", "/var/lib/foremanctl/parameters.yaml", "/var/log/foremanctl/foremanctl.*log", ]) self.add_cmd_output([ "foremanctl features", "foremanctl health", ]) self.add_dir_listing(["/var/lib/foremanctl/"], recursive=True) def postproc(self): # Scrub passwords, credentials, tokens, secrets, and keys self.do_path_regex_sub( "/var/lib/foremanctl/parameters.yaml", r"((.*)?(passw|cred|token|secret|key).*(\:\s|=))(.*)", r"\1********") # Scrub passwords from foremanctl logs - Pattern 1: key=value format self.do_path_regex_sub( "/var/log/foremanctl/foremanctl.*log*", r"((passw|cred|token|secret|key)\w*\s*=\s*)(.*?)(\s|,|\"|'|$)", r"\1********\4") # Scrub passwords from foremanctl logs - Pattern 2: "password something" format self.do_path_regex_sub( "/var/log/foremanctl/foremanctl.*log*", r"(password\s+)(.*?)(\s|,|\"|$)", r"\1********\3") # Scrub admin credentials in username:password format self.do_path_regex_sub( "/var/log/foremanctl/foremanctl.*log*", r"(Admin credentials:\s+\w+:)(.*?)(\"|,|$)", r"\1********\3") # vim: set et ts=4 sw=4 :
Save