Introducing OONI Probe Web

OONI Explorer

Today, we are excited to announce the launch of OONI Probe Web: a new browser-based tool for measuring the blocking of websites.

We built OONI Probe Web in response to long-term community feedback, requesting a censorship measurement tool that can be run from a browser, without requiring the installation of any software. Our goal is to support rapid response efforts to emergent censorship events.

However, please note that OONI Probe Web is experimental, and what can be measured from a browser is very limited in comparison to what can be measured from an app. We therefore hope that the use of OONI Probe Web encourages further use of the OONI Probe app for more extensive and accurate testing.

Brief history of browser-based measurement

The idea of using a browser to carry out censorship measurements is not new. The first person who came up with this idea was Dan Kaminsky in 2012, who built a tool called CensorSweeper.

OONI Explorer

This concept was further refined in 2014 by Sam Burnett and Nick Feamster in the paper: “Encore: Lightweight Measurement of Web Censorship with Cross-Origin Requests”. Their technique relied on loading assets from third-party sites and registering the “onError” handler for the load to record if the asset had successfully been loaded or if the load failed.

According to analysis by third-party researchers, NetBlocks appears to use a similar methodology to carry out their testing (we cannot confirm, since NetBlocks’ tools are closed source and they don’t publish methodological details).

OONI Probe Web methodology

The OONI Probe Web methodology uses the same idea behind CensorSweep and Encore, using a web page to issue requests to third-party websites to infer their blocking. We did, however, extend it to make use of the more modern fetch web API, which allows us to issue requests to an arbitrary endpoint bypassing the same origin policy.

One of the issues with Encore is that you need to first identify some resource which you can load in either an img, iframe, style or script tag to load while respecting the same-origin policies.

By using the fetch API, we are able to overcome these limitations and use our existing test lists to measure the blocking of any website. The “trick” is to use the fetch API with the no-cors mode which allows us to issue third-party requests bypassing any Cross origin check.

Ethics

When carrying out network measurements which involve human participants, it’s always important to take ethics into account. In the paper “No Encore for Encore? Ethical Questions for Web-Based Censorship Measurement”, Arvind Narayanan and Bendert Zevenbergen argue that the type of measurements carried out by Encore raise ethical concerns. The crux of their argument is that it’s unethical that Encore was embedded in certain pages, running in the background and testing third-party sites, without adequately informing the user.

We believe that OONI Probe Web strikes the right balance because:

Limitations

While we have made some improvements to the existing state of the art of browser-based measurements using the fetch API, it’s very important to acknowledge that the testing is still much less complete and precise than what can be done with software like OONI Probe. This is because the APIs available to perform cross-origin requests in a browser are very limited, due to security constraints. It’s very unlikely for that to change, as it would result in significantly increasing the attack surface of a web browser.

In other words, it’s not possible to run advanced experiments (such as the Web Connectivity test, available in the OONI Probe app) from a browser, nor is it possible to run a variety of other experiments designed to measure the reachability and blocking of tools (such as the OONI Probe tests for WhatsApp, Telegram, Psiphon, and many other tools).

That is to say that OONI Probe Web is by no means meant to serve as a replacement for OONI Probe, nor will it ever be.

The experiment which we run with OONI Probe Web only tells us if a site is accessible or not, but it does not provide any information on how it may be blocked. Moreover, OONI Probe Web cannot measure server-side blocking because failing status codes will be recorded as “success” by the test.

The results of an OONI Probe Web experiment look like this:

  "input": "https://example.com/",
  "test\_keys": {
      "result": "ok",
      "load\_time\_ms": 404.40000000596046,
      "browser": "chrome"
  }

The main information we get from this is that the page loaded (ok) and that it took a certain amount of time (e.g 404.4 ms) to load.

False positives and negatives

The OONI Probe Web testing methodology is susceptible to false positives and false negatives.

Instances where we might get a false positive include:

  1. The site is configured in such a way to disallow cross-origin requests by setting the Cross-Origin-Resource-Policy. In our testing, we have found very few sites to implement this, but it’s still something to keep in mind when interpreting the data.
  2. If the user is running Firefox and has enabled Strict Enhanced Tracking Protection (which is the default), all tests for social media resources will result in false positives as the requests are blocked.

We work around these two issues by:

  1. Removing sites from the analysis which we know are configured to set the Cross-Origin-Resource-Policy header.
  2. Asking Firefox users to allowlist our site in their Strict Enhanced Tracking Protection settings.

We can only infer if a Firefox user has changed this setting by doing an analysis of the timing information in the results (requests timeout much faster when the request is denied in the browser).

False negatives can arise if you are testing an HTTP site and the site is serving a block page. To overcome this issue, we only test HTTPS versions of sites. In the event of a block page, we should get a certificate error and hence record it as a failure.

Conclusion

Due to limitations in the API available to web browsers, it’s not possible to run advanced experiments (like the OONI Probe Web Connectivity experiment) necessary for accurately detecting and characterizing website blocks from a browser. Therefore, OONI Probe Web should not serve as a replacement for the OONI Probe apps, but as a complementary tool.

As we just launched OONI Probe Web, it’s experimental and we still have a lot to learn and improve (particularly to reduce the ratio of false positives and false negatives).

We encourage you to run OONI Probe Web and contribute measurements, which will be published as open data in near real-time. By analyzing these measurements, we aim to improve upon OONI Probe Web on an ongoing basis, advancing the field of browser-based censorship measurement.