/usr/share/ooni/inputs/Makefile is in ooniprobe 1.3.2-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 | # This file will fetch a set of inputs that are of use to ooni-probe
all: whatheaders lists
lists:
curl -O https://ooni.torproject.org/inputs/input-pack.tar.gz
tar xzf input-pack.tar.gz
rm input-pack.tar.gz
whatheaders:
wget http://s3.amazonaws.com/data.whatheaders.com/whatheaders-latest.xml.zip
unzip whatheaders-latest.xml.zip
mv whatheaders*.xml whatheaders.xml
rm whatheaders-latest.xml.zip
|