From 7260d355507e0e3cf4c8b8a89cf591c80333df30 Mon Sep 17 00:00:00 2001 From: Suchakra Sharma Date: Wed, 6 Dec 2023 09:40:41 -0800 Subject: [PATCH] add tags to link source to collections (#367) * add tags to link source to collections Required for: https://github.com/Privado-Inc/privado-core/pull/862 * remove rule --------- Co-authored-by: Pandurang Patil Co-authored-by: Hitesh Mahajan Co-authored-by: KhemrajSingh Rathore --- rules/collections/android/any.yaml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/rules/collections/android/any.yaml b/rules/collections/android/any.yaml index 6af90187..54889615 100644 --- a/rules/collections/android/any.yaml +++ b/rules/collections/android/any.yaml @@ -1,43 +1,43 @@ collections: - id: Collections.Android.Form.Email - name: Android app email input + name: Android Form Email patterns: - "(?i)email.*" tags: + sourceId: Data.Sensitive.ContactData.EmailAddress - id: Collections.Android.Form.User - name: Android app username input + name: Android Form User Account patterns: - "(?i)user.*" tags: + sourceId: Data.Sensitive.AccountData.AccountID - id: Collections.Android.Form.Address - name: Address text input Android + name: Android Form Address patterns: - "(?i)address.*" tags: + sourceId: Data.Sensitive.ContactData.Address - id: Collections.Android.Form.PhoneNumber - name: Phone number input Android + name: Android Form Phone Number patterns: - "(?i)phone.*" tags: + sourceId: Data.Sensitive.ContactData.PhoneNumber - id: Collections.Android.Form.ZipCode - name: Zip code input Android + name: Android Form Zip Code patterns: - "(?i)zip.*" tags: + sourceId: Data.Sensitive.ContactData.Address - id: Collections.Android.Form.Password - name: Password input Android + name: Android Form Password patterns: - "(?i)password.*" tags: + sourceId: Data.Sensitive.AccountData.AccountPassword - - id: Collections.Android.Form.Sensitve - name: Miscellaneous sensitive text input Android - patterns: - - ".*(?i)(bio|message|detail|comment).*" - tags: -