From 3ad67cb06788e621da2defbf36c8816797c7987a Mon Sep 17 00:00:00 2001 From: Pranjal Jumde Date: Mon, 18 Nov 2019 12:49:02 -0800 Subject: [PATCH] Fix 6983: Add fingerprinting exception for veriff.me on uphold --- common/shield_exceptions.cc | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/common/shield_exceptions.cc b/common/shield_exceptions.cc index 7463f8848686..339dadc896bf 100644 --- a/common/shield_exceptions.cc +++ b/common/shield_exceptions.cc @@ -43,13 +43,17 @@ bool IsWhitelistedFingerprintingException(const GURL& firstPartyOrigin, static std::map > whitelist_patterns = { { URLPattern(URLPattern::SCHEME_ALL, "https://uphold.com/"), - std::vector({URLPattern(URLPattern::SCHEME_ALL, - "https://uphold.netverify.com/*")}) + std::vector({ + URLPattern(URLPattern::SCHEME_ALL, "https://uphold.netverify.com/*"), + URLPattern(URLPattern::SCHEME_ALL, "https://*.veriff.me/*"), + }) }, { URLPattern(URLPattern::SCHEME_ALL, "https://sandbox.uphold.com/"), - std::vector({URLPattern(URLPattern::SCHEME_ALL, - "https://*.netverify.com/*")}) + std::vector({ + URLPattern(URLPattern::SCHEME_ALL, "https://*.netverify.com/*"), + URLPattern(URLPattern::SCHEME_ALL, "https://*.veriff.me/*"), + }) }, { URLPattern(URLPattern::SCHEME_ALL, "https://*.1password.com/*"),