Skip to content

Commit

Permalink
Merge pull request #4012 from brave/uphold_veriff
Browse files Browse the repository at this point in the history
Fix 6983: Add fingerprinting exception for veriff.me on uphold
  • Loading branch information
jumde authored Nov 19, 2019
2 parents e4aa523 + 3ad67cb commit 134798d
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions common/shield_exceptions.cc
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,17 @@ bool IsWhitelistedFingerprintingException(const GURL& firstPartyOrigin,
static std::map<URLPattern, std::vector<URLPattern> > whitelist_patterns = {
{
URLPattern(URLPattern::SCHEME_ALL, "https://uphold.com/"),
std::vector<URLPattern>({URLPattern(URLPattern::SCHEME_ALL,
"https://uphold.netverify.com/*")})
std::vector<URLPattern>({
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(URLPattern::SCHEME_ALL,
"https://*.netverify.com/*")})
std::vector<URLPattern>({
URLPattern(URLPattern::SCHEME_ALL, "https://*.netverify.com/*"),
URLPattern(URLPattern::SCHEME_ALL, "https://*.veriff.me/*"),
})
},
{
URLPattern(URLPattern::SCHEME_ALL, "https://*.1password.com/*"),
Expand Down

0 comments on commit 134798d

Please sign in to comment.