Skip to contentSkip to navigationSkip to topbar
Rate this page:
On this page

Preventing Fraud in Verify


One of the challenges of operating globally is the increased exposure to fraud. There are two types of attacks we commonly see in phone verification or two-factor authentication (2FA) flows.

  1. SMS pumping
  2. International Revenue Sharing Fraud (IRSF) also known as "Toll Fraud"

Both attacks cause inflated traffic to your app with the intent to make money and not to steal information. While the specific ways attackers monetize these types of fraud is different, the strategies you can implement to reduce fraud are similar.

verification fraud diagram.
(error)

Danger

Customer participation is essential to successfully defend against fraud. Our Verify product includes comprehensive built-in fraud detection and mitigation mechanisms. However, no provider-side solution can guarantee 100% effectiveness against sophisticated attackers.


What is SMS pumping?

what-is-sms-pumping page anchor

SMS pumping fraud happens when fraudsters take advantage of a phone number input field to receive a one-time passcode, an app download link, or anything else via SMS. The messages are sent to a range of numbers controlled by a specific mobile network operator(link takes you to an external page) (MNO) and the fraudsters get a share of the generated revenue.

See the SMS Pumping Fraud glossary entry for more information.


Toll fraud, also known as International Revenue Sharing Fraud (IRSF), happens when an application is exploited to generate a high volume of voice calls to the fraudster's own international premium rate numbers. The victim of the toll fraud bears the entire financial responsibility for each minute of the call.

See the Toll Fraud glossary entry for more information.

Enable Verify SMS Fraud Guard

enable-verify-sms-fraud-guard page anchor

Twilio recommends enabling the SMS fraud guard on your account. When enabled, this feature will block the transmission of suspicious and likely fraudulent SMS messages preventing unnecessary charges to your account.

If you don't plan to allow any calls, you can disable that channel by selecting the Service on the Console(link takes you to an external page), selecting the Voice tab, and disabling the channel.

Implement exponential delays between verification retry requests

implement-exponential-delays-between-verification-retry-requests page anchor

Similar to rate limits, implementing exponential delays between requests to the same phone number is one way to prevent rapid sending. Learn more about our recommendations for retry logic for SMS 2FA in this blog post(link takes you to an external page).

Good Example - "Call me instead" option is not visible until 3 time-delayed SMS attempts.Bad Example - "Call me instead" option is visible at any time and can be repeatedly submitted.
good example of an OTP verification prompt.
bad example of an otp verification prompt.

Add Service Rate Limits for your Verification Service.

Make sure your app will not send more than 1 message per X seconds to the same mobile number range or prefix.(link takes you to an external page) Implement rate limits by user, IP, or device identifier. You can use a CDN like Cloudflare or implement modules in your web server like Nginx(link takes you to an external page) and Apache(link takes you to an external page) for basic rate limiting.

Rate limits may not prevent fraud but can slow the attackers down enough that they decide it's not worth it to go after your app.

Detect bots and refresh your user experience to prevent them

detect-bots-and-refresh-your-user-experience-to-prevent-them page anchor

Libraries like botd(link takes you to an external page) or CAPTCHAs can help detect and deter bot traffic. Small changes to your user experience like ensuring that your users confirm their email address before enrolling in 2FA introduce a small amount of friction for legitimate users but can deter automated scripts and bots.

Learn more about best practices for phone verification and 2FA.

Look up the phone number before sending

look-up-the-phone-number-before-sending page anchor

Use Carrier Lookup to get the line type of a number then only send SMS to mobile numbers. You can also use this API request to determine the carrier and block carriers that may be (knowingly or not) causing inflated traffic. Learn more about how to build a carrier block list with Lookup in this blog post(link takes you to an external page).

Monitor one-time passcode (OTP) conversion rates and create alerts

monitor-one-time-passcode-otp-conversion-rates-and-create-alerts page anchor

Create internal monitors for conversion rate of verifications (i.e number of OTPs validated by end users / number of OTPs sent to end users). If you notice this rate start to drop, especially in an unexpected country, trigger an alert for manual review.

You can also configure a usage trigger(link takes you to an external page) on your Twilio account to alert you when your usage goes above a certain threshold.

Analyze IP and detect VPNs

analyze-ip-and-detect-vpns page anchor

Analyze IP location, IP owner (ISP/proxy/TOR/cloud provider, etc), and IP against the bad reputation list. Block TOR/Cloud Providers/proxies/bad IPs.

While there are legitimate use cases for VPNs, attackers will likely use one to bypass simple I.P. address blocking and this is a signal that something might be awry. There are a lot of solutions for VPN detection(link takes you to an external page) out there to choose from.

Implement geographic permissions to restrict destination countries

implement-geographic-permissions-to-restrict-destination-countries page anchor

Review your Verify Geographic Permissions(link takes you to an external page) and disable all countries that you do not plan to send messages to.

You can also build a programmatic allow list or block list based on the country codes(link takes you to an external page) of the phone number with our free Lookup formatting API.

If you have data on the number of verifications you'd expect per day in a given country, you can set rate limits on groups of countries, allowing relaxed rate limits in countries where you expect legitimate users, and more restricted rate limits in all other countries.


What to do if you suspect fraud on your Twilio account

what-to-do-if-you-suspect-fraud-on-your-twilio-account page anchor

Email fraud@twilio.com if you are facing messaging abuse. Please include the following details in your message:


_10
Account SID:
_10
Product Type:
_10
Date/time Range:
_10
To/Recipient Country:
_10
Workspace SID:
_10
Description of Activity:


Here are some more resources for account security that you might enjoy:


Rate this page: