sensitive infotype

Divya K Nair 41 Reputation points
2024-02-16T04:51:01.8266667+00:00

one requirement is :Only detect if all three keywords are present in the document else there should be no match. Can we configure the sensitive infotype keyword list for the above requirement.
Is there any operations we can perform for keywordlist

Microsoft Graph
Microsoft Graph
A Microsoft programmability model that exposes REST APIs and client libraries to access data on Microsoft 365 services.
10,663 questions
Microsoft Purview
Microsoft Purview
A Microsoft data governance service that helps manage and govern on-premises, multicloud, and software-as-a-service data. Previously known as Azure Purview.
946 questions
Microsoft Intune Compliance
Microsoft Intune Compliance
Microsoft Intune: A Microsoft cloud-based management solution that offers mobile device management, mobile application management, and PC management capabilities.Compliance: Adhering to rules, standards, policies, and laws.
137 questions
Microsoft Intune
Microsoft Intune
A Microsoft cloud-based management solution that offers mobile device management, mobile application management, and PC management capabilities.
4,374 questions
Microsoft Entra ID
Microsoft Entra ID
A Microsoft Entra identity service that provides identity management and access control capabilities. Replaces Azure Active Directory.
19,579 questions
{count} votes

2 answers

Sort by: Most helpful
  1. Debarchan Sarkar - MSFT 1,126 Reputation points Microsoft Employee
    2024-02-20T08:05:43.6366667+00:00

    @Divya K Nair Yes, you can configure a custom sensitive information type (SIT) in Microsoft Purview to detect the presence of multiple specific keywords in close proximity within a document. Here's a brief explanation: Primary Element: This is the main keyword that the SIT is looking for. It can be a regular expression with or without a checksum validation, a keyword list, a keyword dictionary, or a function. Supporting Elements: These are additional keywords that serve as supporting evidence to increase confidence in the match. They can also be a regular expression, keyword list, or keyword dictionary. Confidence Level and Proximity: Confidence levels (high, medium, low) reflect how much supporting evidence is detected along with the primary element. If an item contains more supporting evidence, it increases the confidence that a matched item contains the sensitive info you're looking for. Proximity defines the number of characters between the primary and supporting elements.

    Here's a general example of what this might look like in practice:

    
    {
    
        "name": "CustomSIT",
    
        "description": "Detects if all three keywords are present",
    
        "rulePackage": "RulePackageId",
    
        "patterns": [
    
            {
    
                "pattern": "keyword1",
    
                "supportingElements": [
    
                    {"pattern": "keyword2", "proximity": 300, "confidenceLevel": "high"},
    
                    {"pattern": "keyword3", "proximity": 300, "confidenceLevel": "high"}
    
                ]
    
            }
    
        ]
    
    }
    
    

    In this example, "keyword1" is the primary element, and "keyword2" and "keyword3" are the supporting elements. The proximity value of 300 means that these keywords should be within 300 characters of each other to be considered a match. Remember to replace RulePackageId with the actual ID of your rule package, and keyword1, keyword2, and keyword3 with your actual keywords. Please note that you cannot perform any operations on the keyword list itself. You can only specify the proximity in which multiple keywords should appear to one another in order to trigger detection. Let me know if you have any more questions!

    0 comments No comments

  2. Catherine Kyalo 570 Reputation points Microsoft Employee
    2024-04-04T15:04:21.0566667+00:00

    Hi Divya K Nair

    Yes, you can configure the sensitive info type keyword list to detect if all three keywords are present in the document. This can be done through the Microsoft 365 Compliance Center.

    Here is the link to the documentation on how to create and modify custom sensitive info types with keywords in the Microsoft 365 Compliance Center:

    1. https://learn.microsoft.com/en-us/purview/sit-create-a-keyword-dictionary?tabs=purview#create-a-keyword-dictionary-using-the-microsoft-purview-portal-or-the-microsoft-compliance-portal
    2. https://learn.microsoft.com/en-us/purview/sit-modify-keyword-dictionary?tabs=purview
    0 comments No comments