diff --git a/prowler/lib/mutelist/mutelist.py b/prowler/lib/mutelist/mutelist.py index 7e0cbac129..56414ea425 100644 --- a/prowler/lib/mutelist/mutelist.py +++ b/prowler/lib/mutelist/mutelist.py @@ -314,6 +314,9 @@ class Mutelist(ABC): Args: matched_items (list): List of items to be matched. finding_items (str): String to search for matched items. + tag (bool): If True the search will have a different logic due to the tags being ANDed or ORed: + - Check of AND logic -> True if all the tags are present in the finding. + - Check of OR logic -> True if any of the tags is present in the finding. Returns: bool: True if any of the matched_items are present in finding_items, otherwise False.