Update: Stripe's Response Regarding User Tracking

栏目: IT技术 · 发布时间: 3年前

内容简介:Last week, IThe post generatedSeveral commenters responded that they appreciated his assurances but wanted to see official and binding language in Stripe’s

Last week, I published a blog post describing how Stripe recorded visitor behavior on their customers’ websites. In short, Stripe’s JavaScript library collected information about URLs users visited and telemetry about their mouse movements, even when the site never displayed any Stripe payment forms. I suspected that most Stripe customers were unaware of this and argued that Stripe should disclose their data gathering practices more prominently and in greater detail.

The post generated a lively discussion on Hacker News , including several comments from Patrick Collison, Stripe’s co-founder and CEO. In his top comment , he said:

The question raised (“Is Stripe collecting this data for advertising?") can be readily answered in the negative. This data has never been, would never be, and will never be sold/rented/etc. to advertisers.

Several commenters responded that they appreciated his assurances but wanted to see official and binding language in Stripe’s terms of service and privacy policy .

Less than a week after my article came out, Stripe published a blog post outlining the changes they had made to better disclose their data collection practices and guarantees around user privacy.

Update: Stripe's Response Regarding User Tracking

I’ve reviewed their new documentation, and I’ll discuss how well Stripe’s changes address the issues I raised.

Developer documentation explicitly discloses tracking functionality

To me, the most significant change is that Stripe’s developer documentation now discloses their JavaScript library’s tracking behavior. Prior to yesterday’s changes, the only hints were these two sentences :

To best leverage Stripe’s advanced fraud functionality, ensure that Stripe.js is loaded on every page, not just your checkout page. This allows Stripe to detect anomalous behavior that may be indicative of fraud as customers browse your website.

This omitted critical information and failed to communicate what information the library collected and how it shared that data with Stripe’s servers.

In Stripe’s current documentation, the library includes a section called “Disabling advanced fraud detection signals," which links to a webpage that defines explicitly the types of information Stripe collects for fraud prevention.

Update: Stripe's Response Regarding User Tracking

Stripe’s new fraud detection documentation is more explicit about how Stripe collects user data.

Stripe clients have the option to disable tracking

Stripe updated their JavaScript library to give clients the ability to opt-out of deep data collection. They can now load the <script> tag with the advancedFraudSignals=false parameter to disable this functionality:

<script src="https://js.stripe.com/v3/?advancedFraudSignals=false"></script>

Clients using the @stripe/stripe-js npm package can leverage this feature as well by specifying {advancedFraudSignals: false} while initializing the library:

import {loadStripe} from '@stripe/stripe-js/pure';

loadStripe.setLoadParameters({advancedFraudSignals: false})
const stripe = await loadStripe('pk_test_TYooMQauvdEDq54NiTphI7jx');

This is a positive change, as it restores power to the website owners to decide how much data they want to exchange to achieve better fraud prevention.

Privacy policy now explicitly prohibits Stripe from selling user data

On Wednesday, Stripe drastically revised their privacy policy . The revisions place stricter limitations on how Stripe handles user data and shares it with external partners.

I made a diff view of the full set of changes to the privacy policy, but I’ll highlight the notable ones here.

  • Ad networks and sale of user data are gone

In my original blog post, I called out this worrying section from Stripe’s privacy policy:

When you visit our Sites or online services, both we and certain third parties collect information about your online activities over time and across different sites to provide you with advertising about products and services tailored to your individual interests (this type of advertising is called “interest-based advertising”).

Stripe also had language giving themselves permission to share data with ad partners like AdWords and AdRoll:

We work with Google AdWords, Doubleclick, AdRoll and other advertising networks.

Stripe has cut both of those sections. Their new language is refreshingly clear and direct: Stripe does not sell customer data to advertisers:

We do not use, share, rent or sell the Personal Data of our Users’ Customers for interest-based advertising. We do not sell or rent the Personal Data of our Users, their Customers or our Site visitors.
  • User data is still protected, even after a corporate sale

Amid the discussion on Hacker News, a user expressed concern that, despite Stripe’s current good intentions, user data could fall into the wrong hands in the event that another company purchased Stripe. Patrick Collison responded:

I’ll ask our legal team if we can somehow contractually preclude ourselves from sharing this data in the case of liquidation or otherwise bind ourselves in a useful fashion…

Perhaps in direct response to that exchange, the new privacy policy includes this clause:

Any other entity which buys us or part of our business will have the right to continue to use your Personal Data, but only in the manner set out in this Privacy Policy unless you agree otherwise.

Changes I’d still like to see

I’m impressed by Stripe’s quick and thorough changes, but there remain areas I think need improvement. I’ve expressed these concerns to Stripe directly, and they’ve said they have plans to address them in the future.

Disclose URL collection more explicitly

On Stripe’s dedicated fraud detection page, they include a section “Types of signals," which explains what information they collect from end-users as part of fraud detection.

In my blog post, I noted that Stripe was collecting full URLs of every page the user visited, including query strings (e.g., example.com?userId=michael ) and URL fragments (e.g., example.com#key=1234 ). Stripe still doesn’t make it clear that they’re collecting this information. The closest they come is this section (emphasis mine):

Advanced fraud detection signals also include activity indicators from the shopping experience that help us distinguish legitimate shoppers from fraudulent purchasers and bots… These signals include mouse activity indicators and how long a user spends on different pages in the shopping experience, which are both predictive of bot-like behavior across the duration of a session.

Can a reasonable person deduce from this language that Stripe collects full URLs? I doubt it.

Perhaps you have no sympathy for web applications that store sensitive data in query strings, as that’s widely recognized as an insecure pattern . The URL fragment is more serious. That otherwise is a safe way to store sensitive information, so it’s alarming to see a third-party library sending a copy to an external server.

Firefox Send and Mega.nz are both examples of popular web apps that use the URL fragment to store client-side encryption keys so that users can save end-to-end encrypted files to the cloud without the server ever having access to the underlying data. If Stripe’s JS library ran on a site that used a similar scheme, their library would leak sensitive encryption keys to Stripe’s servers.

Update: Stripe's Response Regarding User Tracking

Popular file-sharing application Mega.nz stores sensitive encryption keys in the URL fragment field

Support library unloading

While the loadStripe function and /pure import path give integrators the power to decide when to turn Stripe on, there’s still no way to turn Stripe off .

Suppose that you want to enable Stripe’s advanced fraud detection during a checkout flow, but you want to stop sharing data with Stripe once the transaction completes. The only way to do this right now is toforce a page refresh.

It would be better if Stripe offered a simple function like unloadStripe that dynamically disabled tracking when the app no longer needed it.

Why does all this matter?

By including third-party JavaScript packages, website owners confer to the libraries a great deal of trust. With the ability to execute code in the user’s browser, JavaScript libraries have the keys to the kingdom. They can access all the information the user can see and can perform actions on the site under the user’s privileges.

Website owners have a responsibility (in some jurisdictions, a legal one) to understand what information their site collects, either directly or through third-party libraries. It’s good that Stripe is demonstrating responsible data stewardship, but website owners must continue to assert their right to understand what data external partners collect and what limits those partners guarantee about the data.


以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

xHTML+CSS+Dreamweaver CS3标准网站构建实例详解

xHTML+CSS+Dreamweaver CS3标准网站构建实例详解

李晓斌 / 第1版 (2007年9月1日) / 2007-9 / 49.9

《xHTML+CSS+Dreamweaver CS3标准网站构建实例详解》特别适合网站美工、网站前端架构师、网页设计爱好者、Wap页面设计师作为学习Web标准网页制作的入门图书,也适合Web标准网站高手作为案头随手查询手册,也适合作为美术院校和培训学校相关专业的培训教材。一起来看看 《xHTML+CSS+Dreamweaver CS3标准网站构建实例详解》 这本书的介绍吧!

JS 压缩/解压工具
JS 压缩/解压工具

在线压缩/解压 JS 代码

RGB转16进制工具
RGB转16进制工具

RGB HEX 互转工具

HEX CMYK 转换工具
HEX CMYK 转换工具

HEX CMYK 互转工具