Flagging Sensitive Details Request

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