Source code for credsweeper.filters.value_string_type_check

from credsweeper.config import Config
from credsweeper.credentials import LineData
from credsweeper.file_handler.analysis_target import AnalysisTarget
from credsweeper.filters import Filter


[docs]class ValueStringTypeCheck(Filter): r"""Check if line_data is in source code file that require quotes for string declaration. If it is, then checks if line_data really have string literal declaration. Comment rows in source files (start with //, /\*, etc) ignored. True if: - line_data have no value - line_data have no path - line_data is in source code file (.cpp, .py, etc.) and is not comment and contain no quotes (so no string literal declared) False otherwise """ def __init__(self, config: Config) -> None: self.check_for_literals = config.check_for_literals
[docs] def run(self, line_data: LineData, target: AnalysisTarget) -> bool: """Run filter checks on received credential candidate data 'line_data'. Args: line_data: credential candidate data target: multiline target from which line data was obtained Return: True, if need to filter candidate and False if left """ if not self.check_for_literals or line_data.url_part: return False not_quoted = not line_data.is_well_quoted_value not_comment = not line_data.is_comment() if line_data.is_source_file_with_quotes() and not_comment and not_quoted and not line_data.is_quoted \ and line_data.separator and '=' in line_data.separator: # heterogeneous code e.g. YAML in Python uses colon sign instead equals return True return False