How effective is invisible reCAPTCHA on react-native?

744 views Asked by At

We have a use case where we need to protect a login/sign up endpoint from bad actor. This endpoint is expensive for us, because we need to send a One Time Password (OTP) to the submitted number.

A few prevention already in place, such as:

  1. IP rate limiting
  2. Phone number prefix check. They usually call the endpoint with number in sequence.
  3. Only enable "Resend" button in the mobile app after 60 seconds & gradually increase.

This bad actors still find a way to pass our check. We want to introduce captcha challenge on our mobile app. reCAPTCHA v3 looks promising since it does not sacrifice user experience on the app.

Our app is written in react native & need to support both iOS & Android. So we must integrate it to our app by calling WebView.

Is this captcha effective enough to detect BOT, since there is not much interaction in the web view?

0

There are 0 answers