Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add tags to link source to collections #367

Merged
merged 11 commits into from
Dec 6, 2023
22 changes: 14 additions & 8 deletions rules/collections/android/any.yaml
Original file line number Diff line number Diff line change
@@ -1,43 +1,49 @@
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
name: Android Form Sensitive Data
patterns:
- ".*(?i)(bio|message|detail|comment).*"
tags:

sourceId: Data.Sensitive.AccountData.AccountPassword
HiteshMah-Jan marked this conversation as resolved.
Show resolved Hide resolved
Loading