The Zurich release has arrived! Interested in new features and functionalities? Click here for more

Scan Tables for secured information(Credit cards, Account numbers) in Servicenow

Sathish6
Kilo Contributor

Hi

How to Scan credit card number and Account numbers in service now like short description,work notes, all String fields on ITSM.

i need to find the records which entered credit card numbers and account numbers.

how we can achieve this.

how we can write Script to build for Scan Tables for secured information(Credit card numbers, Account numbers) should not to allow to insert records

Regards,

Sathish.    

1 ACCEPTED SOLUTION

anubhavkapoor76
ServiceNow Employee
ServiceNow Employee

Hi Sat,

Master rule is to use Regular expressions to validate different credit card nos. You can find more info here: https://www.w3resource.com/javascript/form/credit-card-validation.php

For Account nos if you have a pattern then you can put that into regular expressions and write a script include.

Note: For creating Regular expressions and validating then use: https://regex101.com/

For doing a global search on tables you can look for any Script Include or UI Macro.

Mark this helpful/correct if it works for you

Cheers!!

Anubhav

View solution in original post

2 REPLIES 2

anubhavkapoor76
ServiceNow Employee
ServiceNow Employee

Hi Sat,

Master rule is to use Regular expressions to validate different credit card nos. You can find more info here: https://www.w3resource.com/javascript/form/credit-card-validation.php

For Account nos if you have a pattern then you can put that into regular expressions and write a script include.

Note: For creating Regular expressions and validating then use: https://regex101.com/

For doing a global search on tables you can look for any Script Include or UI Macro.

Mark this helpful/correct if it works for you

Cheers!!

Anubhav

Yes it's useful regex for me