OXIESEC PANEL
- Current Dir:
/
/
usr
/
lib
/
python3
/
dist-packages
/
sos
/
cleaner
/
parsers
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
03/17/2025 09:32:20 AM
rwxr-xr-x
📄
__init__.py
6.26 KB
08/15/2022 08:07:50 PM
rw-r--r--
📁
__pycache__
-
03/17/2025 09:32:20 AM
rwxr-xr-x
📄
hostname_parser.py
3.42 KB
08/15/2022 08:07:50 PM
rw-r--r--
📄
ip_parser.py
1.59 KB
08/15/2022 08:07:50 PM
rw-r--r--
📄
keyword_parser.py
1.62 KB
08/15/2022 08:07:50 PM
rw-r--r--
📄
mac_parser.py
2.57 KB
11/21/2024 02:52:56 PM
rw-r--r--
📄
username_parser.py
2.08 KB
08/15/2022 08:07:50 PM
rw-r--r--
Editing: keyword_parser.py
Close
# Copyright 2020 Red Hat, Inc. Jake Hunsaker <jhunsake@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. import os from sos.cleaner.parsers import SoSCleanerParser from sos.cleaner.mappings.keyword_map import SoSKeywordMap class SoSKeywordParser(SoSCleanerParser): """Handles parsing for user provided keywords """ name = 'Keyword Parser' map_file_key = 'keyword_map' def __init__(self, config, keywords=None, keyword_file=None): self.mapping = SoSKeywordMap() self.user_keywords = [] super(SoSKeywordParser, self).__init__(config) for _keyword in self.mapping.dataset.keys(): self.user_keywords.append(_keyword) if keywords: for keyword in keywords: if keyword not in self.user_keywords: # pre-generate an obfuscation mapping for each keyword # this is necessary for cases where filenames are being # obfuscated before or instead of file content self.mapping.get(keyword.lower()) self.user_keywords.append(keyword) if keyword_file and os.path.exists(keyword_file): with open(keyword_file, 'r') as kwf: self.user_keywords.extend(kwf.read().splitlines()) def _parse_line(self, line): return line, 0