The following files are available for download. You can use the checksum and signatures files to verify the integrity of the files.
This zine goes into detail about mobile phone surveillance and the most common and effective countermeasures against it. Popular misconceptions and urban legends are addressed to help ensure that our threat models are OpSec are based on reality. This zine is suitable for everyone involved in social movements.
Download | Signature | Key |
---|---|---|
Download the files you want, import the PGP key, and verify the downloads. You can use the following script.
#!/bin/bash
set -euo pipefail
trap "echo 'Something went wrong! Download not verified!'" EXIT
for file in pandemic-security.pdf pandemic-security.pdf.sig; do
wget "https://opsec.riotmedicine.net/static/downloads/$file"
done
wget -O - https://riotmedicine.net/static/hakan.gpg.asc | gpg2 --import
# on success, the output will include the text
# Good signature from "Håkan Geijer "
gpg2 --verify-files pandemic-security.pdf.sig
echo ''
echo 'Download successfully verified.'
echo ''
trap - EXIT