ooni-probe-cli/internal/engine/experiment
2022-11-23 11:47:44 +01:00
..
dash refactor: pass experiment arguments using a struct (#983) 2022-11-22 10:43:47 +01:00
dnscheck refactor: pass experiment arguments using a struct (#983) 2022-11-22 10:43:47 +01:00
dnsping refactor: pass experiment arguments using a struct (#983) 2022-11-22 10:43:47 +01:00
example refactor: pass experiment arguments using a struct (#983) 2022-11-22 10:43:47 +01:00
fbmessenger refactor: pass experiment arguments using a struct (#983) 2022-11-22 10:43:47 +01:00
hhfm refactor: pass experiment arguments using a struct (#983) 2022-11-22 10:43:47 +01:00
hirl refactor: pass experiment arguments using a struct (#983) 2022-11-22 10:43:47 +01:00
httphostheader refactor: pass experiment arguments using a struct (#983) 2022-11-22 10:43:47 +01:00
imap Basic SMTP/IMAP probe: look for bad TLS and StartTLS downgrade attacks 2022-11-23 11:47:44 +01:00
ndt7 refactor: pass experiment arguments using a struct (#983) 2022-11-22 10:43:47 +01:00
portfiltering refactor: pass experiment arguments using a struct (#983) 2022-11-22 10:43:47 +01:00
psiphon refactor: pass experiment arguments using a struct (#983) 2022-11-22 10:43:47 +01:00
quicping refactor: pass experiment arguments using a struct (#983) 2022-11-22 10:43:47 +01:00
riseupvpn refactor: pass experiment arguments using a struct (#983) 2022-11-22 10:43:47 +01:00
run refactor: pass experiment arguments using a struct (#983) 2022-11-22 10:43:47 +01:00
signal refactor: pass experiment arguments using a struct (#983) 2022-11-22 10:43:47 +01:00
simplequicping refactor: pass experiment arguments using a struct (#983) 2022-11-22 10:43:47 +01:00
smtp Basic SMTP/IMAP probe: look for bad TLS and StartTLS downgrade attacks 2022-11-23 11:47:44 +01:00
sniblocking refactor: pass experiment arguments using a struct (#983) 2022-11-22 10:43:47 +01:00
stunreachability refactor: pass experiment arguments using a struct (#983) 2022-11-22 10:43:47 +01:00
tcpping refactor: pass experiment arguments using a struct (#983) 2022-11-22 10:43:47 +01:00
telegram refactor: pass experiment arguments using a struct (#983) 2022-11-22 10:43:47 +01:00
tlsmiddlebox refactor: pass experiment arguments using a struct (#983) 2022-11-22 10:43:47 +01:00
tlsping refactor: pass experiment arguments using a struct (#983) 2022-11-22 10:43:47 +01:00
tlstool refactor: pass experiment arguments using a struct (#983) 2022-11-22 10:43:47 +01:00
tor refactor: pass experiment arguments using a struct (#983) 2022-11-22 10:43:47 +01:00
torsf refactor: pass experiment arguments using a struct (#983) 2022-11-22 10:43:47 +01:00
urlgetter refactor: pass experiment arguments using a struct (#983) 2022-11-22 10:43:47 +01:00
vanillator refactor: pass experiment arguments using a struct (#983) 2022-11-22 10:43:47 +01:00
webconnectivity refactor: pass experiment arguments using a struct (#983) 2022-11-22 10:43:47 +01:00
whatsapp refactor: pass experiment arguments using a struct (#983) 2022-11-22 10:43:47 +01:00
README.md doc(step-by-step): readability improvements (#820) 2022-06-30 09:55:18 +02:00

Directory github.com/ooni/probe-cli/internal/engine/experiment

This directory contains the implementation of all the supported experiments, one for each directory. The OONI spec repository contains a description of all the specified experiments.

Note that in the OONI spec repository experiments are called nettests. Originally, they were also called nettests here but that created confusion with nettests in ooni/probe-cli. Therefore, we now use the term experiment to indicate the implementation and the term nettest to indicate the user facing view of such implementation.

Note that some experiments implemented here are not part of the OONI specification. For example, the urlgetter experiment is not in the OONI spec repository. The reason why this happens is that urlgetter is an experiment "library" that other experiments use to implement their functionality.

Likewise, the example experiment is a minimal experiment that does nothing and you could use to bootstrap the implementation of a new experiment. Of course, this experiment is not part of the OONI specification.