Skip to content

Commit

Permalink
Fix 6983: Add fingerprinting exception for veriff.me on uphold
Browse files Browse the repository at this point in the history
  • Loading branch information
jumde committed Nov 18, 2019
1 parent 1b5dfce commit 3ad67cb
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 3ad67cb

Please sign in to comment.