Skip to content

Commit 134798d

Browse files
authored
Merge pull request #4012 from brave/uphold_veriff
Fix 6983: Add fingerprinting exception for veriff.me on uphold
2 parents e4aa523 + 3ad67cb commit 134798d

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

common/shield_exceptions.cc

+8-4
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,17 @@ bool IsWhitelistedFingerprintingException(const GURL& firstPartyOrigin,
4343
static std::map<URLPattern, std::vector<URLPattern> > whitelist_patterns = {
4444
{
4545
URLPattern(URLPattern::SCHEME_ALL, "https://uphold.com/"),
46-
std::vector<URLPattern>({URLPattern(URLPattern::SCHEME_ALL,
47-
"https://uphold.netverify.com/*")})
46+
std::vector<URLPattern>({
47+
URLPattern(URLPattern::SCHEME_ALL, "https://uphold.netverify.com/*"),
48+
URLPattern(URLPattern::SCHEME_ALL, "https://*.veriff.me/*"),
49+
})
4850
},
4951
{
5052
URLPattern(URLPattern::SCHEME_ALL, "https://sandbox.uphold.com/"),
51-
std::vector<URLPattern>({URLPattern(URLPattern::SCHEME_ALL,
52-
"https://*.netverify.com/*")})
53+
std::vector<URLPattern>({
54+
URLPattern(URLPattern::SCHEME_ALL, "https://*.netverify.com/*"),
55+
URLPattern(URLPattern::SCHEME_ALL, "https://*.veriff.me/*"),
56+
})
5357
},
5458
{
5559
URLPattern(URLPattern::SCHEME_ALL, "https://*.1password.com/*"),

0 commit comments

Comments
 (0)