Automatic scanning for sensitive information such as phone numbers, bank account numbers, card numbers, OTPs any sensitive information before posting (in product checks). Posts will be delayed for a few minutes to ensure there are no vulnerability scams.
2 Likes
Enable the âwatched words are regular expressionsâ setting and then head over to Customize - Watched Words - Require Approval and have it trigger on strings of multiple digits.
4 Likes
If youâre looking for an example of how to implement this using regex after enabling the âWatched words are regular expressionsâ setting under Admin â Settings â Posting, this topic has some more information:
For example, you could use the following to censor email addresses and xxx-xxxx phone numbers.:
â\d{3}-\d{4}|[\w+-.]+@[a-z\d-]+(.[a-z\d-]+)*.[a-z]+â
I hope this helps!
4 Likes